修复物业缴费页面金额显示异常问题
This commit is contained in:
parent
af606e5727
commit
e59eab06f9
@ -138,7 +138,7 @@
|
||||
<view class="bottom_left">
|
||||
<span>合计</span>
|
||||
<p>¥</p>
|
||||
{{ currentMoney }}
|
||||
{{ currentMoney.toFixed(2) }}
|
||||
</view>
|
||||
<view class="bottom_right" @click="createPay">立即支付</view>
|
||||
</view>
|
||||
@ -401,7 +401,7 @@ export default {
|
||||
}
|
||||
});
|
||||
});
|
||||
this.currentMoney = money;
|
||||
this.currentMoney = money ? money.toFixed(2) : 0.00;
|
||||
},
|
||||
//具体选择
|
||||
itemsCheckChange(e, indes, index) {
|
||||
@ -425,7 +425,7 @@ export default {
|
||||
}
|
||||
});
|
||||
});
|
||||
this.currentMoney = money;
|
||||
this.currentMoney = money ? money.toFixed(2) : 0.00;
|
||||
},
|
||||
//切换支付方式
|
||||
changePayType(e) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user