This commit is contained in:
menxipeng
2025-09-13 14:20:20 +08:00
parent a14edb27c1
commit 9e75f226b9
21 changed files with 121 additions and 80 deletions

View File

@@ -129,7 +129,7 @@ export default {
this.loading = true;
listOrderInfo(this.queryParams).then(response => {
this.orderList = response.rows;
this.total = response.total;
this.total = parseInt(response.total) || 0;
this.loading = false;
});
},