This commit is contained in:
wenyann 2020-06-02 15:44:07 +08:00
parent b6529b25b8
commit 9ab8e749c5
1 changed files with 2 additions and 2 deletions

View File

@ -193,11 +193,11 @@
}, },
filter(filters) { filter(filters) {
_filter(filters, this.condition); _filter(filters, this.condition);
this.initTableData(); this.init();
}, },
sort(column) { sort(column) {
_sort(column, this.condition); _sort(column, this.condition);
this.initTableData(); this.init();
} }
} }
} }