智慧保安互联网APP
shuishen
2021-07-31 1a36c8ac09c29c62c41edc24cb215b0c1fc3ba4b
pages/dispatch/look.vue
@@ -144,7 +144,7 @@
                           that.newsList.push(that.dataList[that.pagelist]);
                           flag = false;
                           that.flag = false;
                           this.status = 'nomore';
                        }
                     }
@@ -159,7 +159,7 @@
               url: this.$store.state.piAPI + "/directive/page?sendDirectiveId=" + this.$store.state.puserID,
               method: "get",
               data: {
               },
               success: (res) => {
                  var resdata = res.data.data.records;
@@ -167,28 +167,28 @@
                  that.newsList = [];
                  that.flag = true;
                  that.dataList = resdata;
                  var flag = true;
                  for (var i = 0; i < 5; i++) {
                     if (that.pagelist <= that.dataList.length - 2) {
                        that.newsList.push(that.dataList[that.pagelist++]);
                     } else {
                        if (that.dataList.length - 1 == that.pagelist && flag == true) {
                           that.newsList.push(that.dataList[that.pagelist]);
                           flag = false;
                           that.flag = false;
                           this.status = 'nomore';
                        }
                     }
                  }
               }
            });
         },