|
|
@@ -89,7 +89,7 @@ export default {
|
|
|
listData: [],
|
|
|
pagination: {
|
|
|
totalCount: 0,
|
|
|
- currentPage: 1,
|
|
|
+ page: 1,
|
|
|
limit: 15
|
|
|
},
|
|
|
showEditDialog: false,
|
|
|
@@ -327,7 +327,7 @@ export default {
|
|
|
|
|
|
// 后端接口要求分页参数为 pageNo, limit,并嵌套 param
|
|
|
return {
|
|
|
- pageNo: this.pagination.currentPage,
|
|
|
+ pageNo: this.pagination.page,
|
|
|
limit: this.pagination.limit,
|
|
|
param: param,
|
|
|
sorts: this.sorts
|