From 635ffd8597d8aad00046d2d215a2e0ca6d36ad2b Mon Sep 17 00:00:00 2001 From: douzhuo <17611323298@163.com> Date: Wed, 22 Jun 2022 16:16:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A5=E6=8A=A5=E5=A4=8D=E5=88=B6=E5=86=85?= =?UTF-8?q?=E5=AE=B9=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/reportExcel/dayReport.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/reportExcel/dayReport.vue b/pages/reportExcel/dayReport.vue index 3f2019b..2d086cd 100644 --- a/pages/reportExcel/dayReport.vue +++ b/pages/reportExcel/dayReport.vue @@ -307,8 +307,8 @@ data() { return { needList: ['XJTop', 'ZXLTop', 'avgJds'], // 需要转换数组的内容 - carryOutTop: [], // 销讲维度执行前三: - carryOutLast: [], // 销讲维度执行倒三: + carryOutTop: [], // + carryOutLast: [], // consultant: [], // 置业顾问排名 recording: [], // 录音排名 lowest: [], // 执行率最低的顾问 @@ -390,7 +390,8 @@ str += ` 5、销讲维度执行弱项前三:` - this.carryOutLast.map((item, index) => { str += ` + this.carryOutLast.map((item, index) => { + str += ` top${index+1}.${item.title || '--'}${item.value||'0'}%` }) } @@ -411,7 +412,7 @@ 7、置业顾问平均接访时长排名:` this.recording.map((item, index) => { str += ` - top${index+1}.${item.title || '--'}${item.value||'0'}%` + top${index+1}.${item.title || '--'}${item.value||'0'}min` }) } @@ -421,7 +422,7 @@ 8、平均执行率最低的顾问:` this.lowest.map((item, index) => { str += ` - top${index+1}.${item.title || '--'}${item.value||'0'}%` + ${index+1}.${item.title || '--'}${item.value||'0'}%` }) } str += ` @@ -451,7 +452,6 @@ } if (this.weekObj.avgJdsList && this.weekObj.avgJdsList.length > 0) { this.recording = this.weekObj.avgJdsList.reverse().slice(0, 3) - console.log() } },