소스 검색

修改日报

yun
douzhuo 2 년 전
부모
커밋
9567466e67
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. +6
    -6
      pages/reportExcel/dayReport.vue

+ 6
- 6
pages/reportExcel/dayReport.vue 파일 보기

@@ -443,12 +443,12 @@
// 分割数组排名前三,倒三
getTopThree() {
if (this.weekObj.XJTopList && this.weekObj.XJTopList.length > 0) {
this.carryOutLast = this.weekObj.XJTopList.slice(0, 3).reverse()
this.carryOutLast.map((item, index) => {
if (item.value == 100) {
this.carryOutLast.splice(index, 1)
}
})
let arr = this.weekObj.XJTopList.slice(0, 3).reverse()
arr.forEach(item => {
if (item.value != 100) {
this.carryOutLast.push(item)
}
})
this.carryOutTop = this.weekObj.XJTopList.reverse().slice(0, 3)
console.log(this.weekObj.XJTopList)
}


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