diff --git a/pages/reportExcel/dayReport.vue b/pages/reportExcel/dayReport.vue index ec35308..a216f2a 100644 --- a/pages/reportExcel/dayReport.vue +++ b/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)