fix: 处理分页问题
This commit is contained in:
parent
6e866cac0e
commit
c473d6a614
|
@ -174,11 +174,11 @@ export default {
|
||||||
},
|
},
|
||||||
handleSizeChange(val) {
|
handleSizeChange(val) {
|
||||||
this.query.pageSize = val;
|
this.query.pageSize = val;
|
||||||
this.getList();
|
this.queryList();
|
||||||
},
|
},
|
||||||
handleCurrentChange(val) {
|
handleCurrentChange(val) {
|
||||||
this.query.pageNumber = val;
|
this.query.pageNumber = val;
|
||||||
this.getList();
|
this.queryList();
|
||||||
},
|
},
|
||||||
Reset() {
|
Reset() {
|
||||||
this.formList = {};
|
this.formList = {};
|
||||||
|
|
|
@ -174,11 +174,11 @@ export default {
|
||||||
},
|
},
|
||||||
handleSizeChange(val) {
|
handleSizeChange(val) {
|
||||||
this.query.pageSize = val;
|
this.query.pageSize = val;
|
||||||
this.getList();
|
this.queryList();
|
||||||
},
|
},
|
||||||
handleCurrentChange(val) {
|
handleCurrentChange(val) {
|
||||||
this.query.pageNumber = val;
|
this.query.pageNumber = val;
|
||||||
this.getList();
|
this.queryList();
|
||||||
},
|
},
|
||||||
Reset() {
|
Reset() {
|
||||||
this.formList = {};
|
this.formList = {};
|
||||||
|
|
Loading…
Reference in New Issue