修复分页异常

This commit is contained in:
Dragon
2024-03-28 16:53:30 +08:00
parent fe8411b05f
commit 0f1ad9c84e

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;
});
},