task#14196,客户满意度是率

This commit is contained in:
2024-07-08 18:15:54 +08:00
parent 8deaa85c1c
commit febf9a636e

View File

@ -772,6 +772,7 @@ export default {
item.polymerizationSuccessRate=item.polymerizationSuccessRate*100+'%'
item.threeMinutesReceivingRate=item.threeMinutesReceivingRate*100+'%'
item.fortyMinutesArrivalRate=item.fortyMinutesArrivalRate*100+'%'
item.customerSatisfaction=item.customerSatisfaction*100+'%'
let formatVal = dayjs(item.statisticsDate).format('DD');
let formatVal1 = dayjs(item.statisticsDate).format('M');
return {...item, date: formatVal, month: (formatVal1 == this.current) ? '本月' : (formatVal1 + '月')};
@ -806,6 +807,7 @@ export default {
item.polymerizationSuccessRate=item.polymerizationSuccessRate*100+'%'
item.threeMinutesReceivingRate=item.threeMinutesReceivingRate*100+'%'
item.fortyMinutesArrivalRate=item.fortyMinutesArrivalRate*100+'%'
item.customerSatisfaction=item.customerSatisfaction*100+'%'
let formatVal = dayjs(item.statisticsDate).format('DD');
return {...item, date: formatVal};
});
@ -962,7 +964,7 @@ export default {
{label: '月', prop: 'month'},
{label: '投诉量', prop: 'complainOrderCount'},
{label: '投诉率(%', prop: 'complainOrderRate'},
{label: '客户满意度', prop: 'customerSatisfaction'},
{label: '客户满意度%', prop: 'customerSatisfaction'},
{label: '客户评价率(%', prop: 'customerEvaluateRate'},
]
} else if (this.activeIndex === 2) {
@ -1087,7 +1089,7 @@ export default {
{label: '承接案件量', prop: 'receiveOrderCount'},
{label: '投诉量', prop: 'complainOrderCount'},
{label: '投诉率(%', prop: 'complainOrderRate'},
{label: '客户满意度', prop: 'customerSatisfaction'},
{label: '客户满意度%', prop: 'customerSatisfaction'},
{label: '客户评价率(%', prop: 'customerEvaluateRate'},
{label: '催促率(%', prop: 'urgeRate'},
]
@ -1131,7 +1133,7 @@ export default {
{label: '日', prop: 'date'},
{label: '投诉量', prop: 'complainOrderCount'},
{label: '投诉率(%', prop: 'complainOrderRate'},
{label: '客户满意度', prop: 'customerSatisfaction'},
{label: '客户满意度%', prop: 'customerSatisfaction'},
{label: '客户评价率(%', prop: 'customerEvaluateRate'},
{label: '催促率(%', prop: 'urgeRate'},
]