Browse Source

日报复制内容修改

yun
douzhuo 2 years ago
parent
commit
635ffd8597
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      pages/reportExcel/dayReport.vue

+ 6
- 6
pages/reportExcel/dayReport.vue View File

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



Loading…
Cancel
Save