|
@@ -153,6 +153,7 @@ export default {
|
|
|
handleSizeChange(val) {
|
|
|
this.pageSize = val
|
|
|
this.getList({
|
|
|
+ ...this.searchForm,
|
|
|
pageNumber: this.currentPage,
|
|
|
pageSize: this.pageSize
|
|
|
})
|
|
@@ -161,6 +162,7 @@ export default {
|
|
|
handleCurrentChange(val) {
|
|
|
this.currentPage = val
|
|
|
this.getList({
|
|
|
+ ...this.searchForm,
|
|
|
pageNumber: this.currentPage,
|
|
|
pageSize: this.pageSize
|
|
|
})
|
|
@@ -168,6 +170,7 @@ export default {
|
|
|
//搜索功能
|
|
|
async searchFn() {
|
|
|
await this.getList({
|
|
|
+ ...this.searchForm,
|
|
|
pageNumber: 1,
|
|
|
pageSize: this.pageSize
|
|
|
})
|