Browse Source

表格分页大小修改

zhongxiaoyu 1 year ago
parent
commit
2e24d13956
2 changed files with 6 additions and 4 deletions
  1. 1 1
      src/views/newFlightView/index.vue
  2. 5 3
      src/views/newQuery/components/table.vue

+ 1 - 1
src/views/newFlightView/index.vue

@@ -60,7 +60,7 @@
         </div>
       </div>
       <div class="newFlightView-right-bottom">
-        <Table :tableTag="table2" ref="table" :fast-filter="fastFilter" :btnStyle="{top:'-52px'}" :istableCol="true" tableName="航班行李列表" @tableLoad="tableLoad" />
+        <Table :tableTag="table2" ref="table" :fast-filter="fastFilter" :btnStyle="{top:'-52px'}" :istableCol="true" tableName="航班行李列表" :pageSize="999" @tableLoad="tableLoad" />
       </div>
     </div>
   </div>

+ 5 - 3
src/views/newQuery/components/table.vue

@@ -323,10 +323,12 @@ export default {
           pageSize
         )
         if (code == 0) {
-          if (returnData.length === 0) {
-            this.page--
+          if (returnData.length < pageSize) {
             this.noMore = true
-            this.loading = false
+            if (returnData.length === 0) {
+              this.page--
+              this.loading = false
+            }
           }
           if (this.shouldReset) {
             this.tableData.push(...returnData)