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() } },