Browse Source

提交其他事项

yunxing 4 years ago
parent
commit
7bfd8a3779

+ 19 - 12
src/views/otherMatter/ComprehensiveMatter.vue

@@ -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%;
         }
     }

+ 3 - 3
src/views/otherMatter/ComprehensiveMatterList.vue

@@ -75,11 +75,11 @@ export default {
                 showMore: true,
             },
             loading: false, // list加载中
-            finished: false, //list组件,加载完成
+            finished: true, //list组件,加载完成
             page: 1, //页码
             size: 5, //分页条数
             count: 0, //总条数
-            title: '部门',
+            title: '',
             params: {}, //跳转改页面时,路由传参
             showImgPreview: false, //是否展示图片预览
             imgList: [], //图片数组
@@ -100,7 +100,7 @@ export default {
             this.title = department
         } else {
             this.params = { department, otherdescription, startDate, endDate }
-            this.title = otherdescription
+            this.title = '其他部门'
         }
         this.getList()
     },