瀏覽代碼

提交修改

message
douzhuo 3 年之前
父節點
當前提交
adaf377718
共有 1 個檔案被更改,包括 4 行新增1 行删除
  1. +4
    -1
      pages/reportExcel/dayReport.vue

+ 4
- 1
pages/reportExcel/dayReport.vue 查看文件

@@ -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…
取消
儲存