This commit is contained in:
shijing 2025-12-03 09:31:13 +08:00
commit 0708b2a2fa
1 changed files with 3 additions and 3 deletions

View File

@ -291,13 +291,13 @@ export default {
},
//
refresh() {
this.$refs.scTable.clearSelection();
// this.$refs.scTable.clearSelection();
this.getData();
},
// query
upData(query, page = 1) {
this.currentPage = page;
this.$refs.scTable.clearSelection();
// this.$refs.scTable.clearSelection();
Object.assign(this.tableParams, query);
this.getData();
},
@ -305,7 +305,7 @@ export default {
queryData(query, page = 1) {
this.currentPage = page;
Object.assign(this.tableParams, query);
this.$refs.scTable.clearSelection();
// this.$refs.scTable.clearSelection();
this.$refs.scTable.clearFilter();
this.getData();
},