需求变更进行调整

This commit is contained in:
2026-01-30 09:01:38 +08:00
parent 44a4b33502
commit 79a21ff0a5
30 changed files with 1482 additions and 1707 deletions

View File

@@ -76,8 +76,8 @@
let url = '/bill/pageQueryWaeBill'
this.$u.post(url, {
pageNo: this.pageNo,
pageSize: this.pageSize
pageSize: this.pageSize,
billStatus: '待缴费'
}, {
WT: token
}).then(
@@ -129,7 +129,7 @@
this.selectedBills = this.selectedBills.filter(b => b.id !== item.id);
}
let sumFee = 0;
this.selectedBills.forEach(b => sumFee += b.amount);
this.selectedBills.forEach(b => sumFee += b.billAmount);
this.sumAmount = sumFee;
},
updateSelected() {