daiyanrong 2 lat temu
rodzic
commit
13c1590ddb

Plik diff jest za duży
+ 0 - 0
dist/index.html


Plik diff jest za duży
+ 0 - 0
dist/static/css/chunk-e038fad6.c92747c1.css


BIN
dist/static/js/app.fd20ef19.js.gz


Plik diff jest za duży
+ 0 - 0
dist/static/js/app.ffdb88fc.js


BIN
dist/static/js/app.ffdb88fc.js.gz


Plik diff jest za duży
+ 0 - 0
dist/static/js/chunk-6c141d86.9639b395.js


BIN
dist/static/js/chunk-6c141d86.9639b395.js.gz


Plik diff jest za duży
+ 0 - 0
dist/static/js/chunk-e038fad6.4ffd62ae.js


BIN
dist/static/js/chunk-e038fad6.4ffd62ae.js.gz


Plik diff jest za duży
+ 0 - 0
dist/static/js/chunk-libs.6051cf69.js


BIN
dist/static/js/chunk-libs.07ac3f76.js.gz → dist/static/js/chunk-libs.6051cf69.js.gz


+ 23 - 2
src/components/ExTableNew.vue

@@ -95,7 +95,7 @@
               :scope="scope"
             ></ex-slot>
           </template>
-          <template v-else slot-scope="scope" >
+          <template v-else slot-scope="scope">
             <span>{{
               column._format_
                 ? column._format_(scope.row)
@@ -270,7 +270,28 @@ export default {
       tableSelection: [],
     };
   },
-  watch: {},
+  computed: {
+    page_curr() {
+      return this.page.curr;
+    },
+    page_size() {
+      return this.page.size;
+    },
+    page_total() {
+      return this.page.total;
+    },
+  },
+  watch: {
+    page_curr: function (val) {
+      this.page.curr = val;
+    },
+    page_size: function (val) {
+      this.page.size = val;
+    },
+    page_total: function (val) {
+      this.page.total = val;
+    },
+  },
   mounted() {
     // 拖拽绑定
     this.rowDrop();

+ 3 - 0
src/mixins/elPaginationHandle.js

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

Niektóre pliki nie zostały wyświetlone z powodu dużej ilości zmienionych plików