分页数量修改

This commit is contained in:
GaoHao 2024-11-27 15:38:30 +08:00
parent bd0b9311fd
commit 985a3c6ad6
1 changed files with 3 additions and 1 deletions

View File

@ -202,6 +202,7 @@ export default {
let params = { let params = {
page: this.query.page, page: this.query.page,
size: this.query.size, size: this.query.size,
status: this.query.status,
creditBuyerId: this.query.creditBuyerId creditBuyerId: this.query.creditBuyerId
} }
if (this.query.createdAt.length > 0) { if (this.query.createdAt.length > 0) {
@ -323,7 +324,8 @@ export default {
* @param e * @param e
*/ */
sizeChange(e) { sizeChange(e) {
this.tableData.size = e console.log(e)
this.query.size = e
this.getTableData() this.getTableData()
}, },