|
@@ -100,6 +100,9 @@ export default {
|
|
|
this.getList()
|
|
|
},
|
|
|
async getList() {
|
|
|
+ if (this.page > 1 && this.count === 0) {
|
|
|
+ return false
|
|
|
+ }
|
|
|
let getParams = {
|
|
|
plazaId: this.plazaId,
|
|
|
page: this.page,
|
|
@@ -154,27 +157,25 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
if (['其他部门', '其他', '其它'].includes(data[0].department)) {
|
|
|
- console.log(123123123123123123)
|
|
|
let item = data[0]
|
|
|
item.showOther = true
|
|
|
- item.children.push({ department: item.department, cnt: item.cnt, otherdescription: item.otherdescription })
|
|
|
+ item.children.push({ department: item.department, count: item.count, otherdescription: item.otherdescription })
|
|
|
}
|
|
|
// 处理其他部门,将在一起的其他部门,合并到一起
|
|
|
for (let index = 1, len = data.length; index < len; index++) {
|
|
|
const item = data[index]
|
|
|
// 出现的第一个其他部门加入children
|
|
|
- console.log(index, item, item.department)
|
|
|
if (['其他部门', '其他', '其它'].includes(item.department) && !['其他部门', '其他', '其它'].includes(data[index - 1].department)) {
|
|
|
item.showOther = true
|
|
|
if (
|
|
|
- !item.children.some(({ department, cnt, otherdescription }) => {
|
|
|
- return item.otherdescription === otherdescription && item.cnt === cnt && item.department === item.department
|
|
|
+ !item.children.some(({ department, count, otherdescription }) => {
|
|
|
+ return item.otherdescription === otherdescription && item.count === count && item.department === item.department
|
|
|
})
|
|
|
) {
|
|
|
- item.children.push({ department: item.department, cnt: item.cnt, otherdescription: item.otherdescription })
|
|
|
+ item.children.push({ department: item.department, count: item.count, otherdescription: item.otherdescription })
|
|
|
}
|
|
|
} else if (data[index - 1].department === item.department && ['其他部门', '其他', '其它'].includes(item.department)) {
|
|
|
- data[index - 1].children.push({ department: item.department, cnt: item.cnt, otherdescription: item.otherdescription })
|
|
|
+ data[index - 1].children.push({ department: item.department, count: item.count, otherdescription: item.otherdescription })
|
|
|
data.splice(index--, 1)
|
|
|
len--
|
|
|
}
|
|
@@ -185,15 +186,22 @@ export default {
|
|
|
this.list = this.list.concat(data)
|
|
|
}
|
|
|
this.loading = false
|
|
|
- if (this.currentCount === this.count) {
|
|
|
+ if (this.currentCount >= this.count) {
|
|
|
this.finished = true
|
|
|
} else {
|
|
|
this.finished = false
|
|
|
}
|
|
|
-
|
|
|
},
|
|
|
async onLoad() {
|
|
|
- await this.sleep(1000)
|
|
|
+ console.log('onload')
|
|
|
+ // 防止第一页没有数据,接着查询第二页
|
|
|
+ if (this.page > 1 && this.count === 0) {
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ // 防止第一页不够
|
|
|
+ if (this.currentCount >= this.count) {
|
|
|
+ return true
|
|
|
+ }
|
|
|
// 异步更新数据
|
|
|
await this.getList()
|
|
|
this.page++
|
|
@@ -203,7 +211,6 @@ export default {
|
|
|
if (this.currentCount >= this.count) {
|
|
|
this.finished = true
|
|
|
}
|
|
|
- console.log(this.loading, this.finished)
|
|
|
},
|
|
|
/**
|
|
|
* 同步延迟器
|
|
@@ -330,7 +337,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- /deep/ .van-empty{
|
|
|
+ /deep/ .van-empty {
|
|
|
height: 100%;
|
|
|
}
|
|
|
}
|