Browse Source

提交修改

message
douzhuo 1 year ago
parent
commit
adaf377718
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      pages/reportExcel/dayReport.vue

+ 4
- 1
pages/reportExcel/dayReport.vue View File

@@ -447,6 +447,7 @@
arr.forEach(item => {
if (item.value != 100) {
this.carryOutLast.push(item)
console.log('我是最低的判断进来了', this.carryOutLast)
}
})
this.carryOutTop = this.weekObj.XJTopList.reverse().slice(0, 3)
@@ -454,7 +455,9 @@
}
if (this.weekObj.ZXLTopList && this.weekObj.ZXLTopList.length > 0) {
this.consultant = this.weekObj.ZXLTopList.reverse().slice(0, 3)
this.lowest.push(this.weekObj.ZXLTopList[this.weekObj.ZXLTopList.length - 1])
if (this.weekObj.ZXLTopList[this.weekObj.ZXLTopList.length - 1].value != 100) {
this.lowest.push(this.weekObj.ZXLTopList[this.weekObj.ZXLTopList.length - 1])
}
}
if (this.weekObj.avgJdsList && this.weekObj.avgJdsList.length > 0) {
this.recording = this.weekObj.avgJdsList.reverse().slice(0, 3)


Loading…
Cancel
Save