Browse Source

Merge branch 'sit'

xiaodai2022 2 years ago
parent
commit
cee96db5fe

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-52c1f9c4.db8b81a8.js


BIN
dist/static/js/chunk-52c1f9c4.041f5a2d.js.gz → dist/static/js/chunk-52c1f9c4.db8b81a8.js.gz


+ 9 - 3
src/mixins/elPaginationHandle.js

@@ -2,13 +2,19 @@ export default {
   methods: {
     async handlePageChange(val) {
       this.parmValue.page = val
-      this.pageInfo.curr = val
+      if(this.pageInfo){
+        this.pageInfo.curr = val
+      }
+     
       await this.searchList()
     },
     async handleSizeChange(val) {
       this.parmValue.page = 1
-      this.pageInfo.curr = 1
-      this.pageInfo.size = val
+      if(this.pageInfo){
+        this.pageInfo.curr = 1
+        this.pageInfo.size = val
+      }
+     
       this.parmValue.size = val
       await this.searchList()
     }

Some files were not shown because too many files changed in this diff