From 65e5bd2814ced83d0151a159d2f6e7b50762cd46 Mon Sep 17 00:00:00 2001
From: zhoulinf <2507241354@qq.com>
Date: Mon, 8 Sep 2025 10:18:33 +0800
Subject: [PATCH] =?UTF-8?q?kpi=E7=8E=87=E4=B9=98=E4=BB=A5=E4=B8=80?=
=?UTF-8?q?=E7=99=BE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/kpi/kpiIndex.vue | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/src/views/kpi/kpiIndex.vue b/src/views/kpi/kpiIndex.vue
index 59b3c16c..7b82591a 100644
--- a/src/views/kpi/kpiIndex.vue
+++ b/src/views/kpi/kpiIndex.vue
@@ -65,7 +65,7 @@
-
@@ -78,7 +78,7 @@
:is-store="false"
@clickUse="clickJumpHandle(8)">
-
+
@@ -991,7 +991,9 @@ export default {
'threeMinutesContactRate',
'urgeRate',
'appRate',
- 'polymerizationSuccessRate'
+ 'polymerizationSuccessRate',
+ 'pinganFavorableRate',
+ 'wholeJuheSuccessRate',
];
for (let key in this.indexData){
if (propertiesToProcess.includes(key)) {
@@ -1373,7 +1375,7 @@ export default {
if (this.value == 1) {
this.detailList?.map(item => {
this.v1.push(item.receiving)
- this.v2.push(item.threeMinutesReceivingRate.replace('%', ''))
+ this.v2.push(item.threeMinutesContactRate.replace('%', ''))
})
} else {
this.detailList?.map(item => {
@@ -1387,7 +1389,7 @@ export default {
columnObj.label = item.month // 每一列的标题的名称
columnObj.prop = props + index //自定义每一列标题字段名称
this.etlLabelList.push(columnObj)
- let mappings = [ 'receiving', 'threeMinutesReceivingRate', 'arriving','fortyMinutesArrivalRate','polymerizationSuccessArriving'];
+ let mappings = [ 'receiving', 'threeMinutesContactRate', 'arriving','fortyMinutesArrivalRate','polymerizationSuccessArriving'];
for (let i = 0; i < mappings.length; i++) {
this.$set(this.etlDetailList[i], columnObj.prop, item[mappings[i]]);
}
@@ -1395,7 +1397,7 @@ export default {
} else {
this.detailList?.map(item => {
this.v1.push(item.receiving)
- this.v2.push(item.threeMinutesReceivingRate.replace('%', ''))
+ this.v2.push(item.threeMinutesContactRate.replace('%', ''))
})
if (this.swithVal) {
this.detailList?.map(item => {
@@ -1414,7 +1416,7 @@ export default {
this.labelList = [
{label: '月份', prop: 'month'},
{label: '接单时效', prop: 'receiving'},
- {label: '3分钟联系客户率', prop: 'threeMinutesReceivingRate'},
+ {label: '3分钟联系客户率', prop: 'threeMinutesContactRate'},
{label: '到达时效', prop: 'arriving'},
{label: '平安聚合成功到达时效', prop: 'pinganJuheSuccessArriving'},
]