修复分页异常

This commit is contained in:
Dragon
2024-03-28 16:53:30 +08:00
parent 5912866770
commit 2e6cc8333f

View File

@@ -149,7 +149,7 @@ export default {
page: this.currentPage,
pageSize: this.pageSize,
}).then((res) => {
this.toatal = res.data.toatal;
this.total = res.data.total;
this.tableData = res.data.rows;
});
},