修复物业公积金显示错误的问题

This commit is contained in:
赵毅 2025-09-25 15:32:09 +08:00
parent 62ddc43aa2
commit af606e5727

View File

@ -10,7 +10,7 @@
<view class="container_body" :style="{ paddingTop: top + 'px' }">
<view class="title">物业公积金</view>
<view class="title_bottom">
<view>{{ moeny }}</view>
<view>{{ getTotal(list.owners) }}</view>
<u-icon
name="info-circle"
size="30rpx"
@ -155,6 +155,10 @@ export default {
},
methods: {
//
getTotal(owners) {
return owners.reduce((total, owner) => total + owner.property_fund_balance, 0).toFixed(2);
},
headerConfirmClick(item) {
this.defaultName = {
...item,