Parcourir la source

修改日报

branch0222
douzhuo il y a 1 an
Parent
révision
79762f26ba
1 fichiers modifiés avec 6 ajouts et 5 suppressions
  1. +6
    -5
      pages/reportExcel/dayReport.vue

+ 6
- 5
pages/reportExcel/dayReport.vue Voir le fichier

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


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




Chargement…
Annuler
Enregistrer