|
@@ -1560,6 +1560,7 @@ export default {
|
|
|
this.paymentList = this.oldpaymentList.filter((t) => t.roomId === e)
|
|
this.paymentList = this.oldpaymentList.filter((t) => t.roomId === e)
|
|
|
this.paidList = this.oldpaidList.filter((t) => t.roomId === e)
|
|
this.paidList = this.oldpaidList.filter((t) => t.roomId === e)
|
|
|
this.strikeList = this.oldStrikeList.filter((t) => t.roomId === e)
|
|
this.strikeList = this.oldStrikeList.filter((t) => t.roomId === e)
|
|
|
|
|
+ this.entiretyList = this.entiretyAmount.filter((t) => t.roomId === e)
|
|
|
let find = this.model.livingRoomIds.find((t) => t.roomId === this.selectRoomId)
|
|
let find = this.model.livingRoomIds.find((t) => t.roomId === this.selectRoomId)
|
|
|
this.chooseLivingRoom = find
|
|
this.chooseLivingRoom = find
|
|
|
console.log(this.model)
|
|
console.log(this.model)
|
|
@@ -1745,6 +1746,8 @@ export default {
|
|
|
this.oldpaidList = JSON.parse(JSON.stringify(this.paidList))
|
|
this.oldpaidList = JSON.parse(JSON.stringify(this.paidList))
|
|
|
// 全部账单
|
|
// 全部账单
|
|
|
this.entiretyList = this.feesList.concat(this.paidList)
|
|
this.entiretyList = this.feesList.concat(this.paidList)
|
|
|
|
|
+ console.log(this.selectRoomId);
|
|
|
|
|
+ this.entiretyList = this.entiretyList.filter((t) => t.roomId === this.selectRoomId)
|
|
|
this.entiretyAmount = this.feesList.concat(this.paidList)
|
|
this.entiretyAmount = this.feesList.concat(this.paidList)
|
|
|
console.log(this.entiretyList,'全部账单');
|
|
console.log(this.entiretyList,'全部账单');
|
|
|
console.log(this.entiretyAmount,'全部账单');
|
|
console.log(this.entiretyAmount,'全部账单');
|