Browse Source

修改日报

branch0222
douzhuo 1 year ago
parent
commit
79762f26ba
1 changed files with 6 additions and 5 deletions
  1. +6
    -5
      pages/reportExcel/dayReport.vue

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

@@ -492,23 +492,24 @@
3、平均接待时长:${ this.weekObj.avgDuration || 0 }min
对比昨天:${this.weekObj.avgDurationPK > 0 ? '+' : '' }${ this.weekObj.avgDurationPK || 0 }min`
if (this.carryOutTop.length > 0) {
if (this.consultant.length > 0) {
str += `
4、项目平均执行率排名:`
this.carryOutTop.map((item, index) => {
this.consultant.map((item, index) => {
str += `
top${index+1}.${item.title || '--'}${item.value||'0'}%`
})
}

if (this.carryOutLast.length > 0) {
if (this.recording.length > 0) {
str += `
5、项目平均接访时长排名:`
this.carryOutLast.map((item, index) => {
this.recording.map((item, index) => {
str += `
top${index+1}.${item.title || '--'}${item.value||'0'}%`
top${index+1}.${item.title || '--'}${item.value/60||'0'}m`
})
}



Loading…
Cancel
Save