소스 검색

提交修改

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)


불러오는 중...
취소
저장