修改好店支付物业公积金和积分的数据显示异常问题

This commit is contained in:
赵毅 2025-10-11 14:40:19 +08:00
parent 3c26c8c1a0
commit 2030e5e84d

View File

@ -121,8 +121,10 @@ export default {
},
watch: {
Money(newVal) {
this.homeMoney = newVal * (this.info.refund_property_fee_ratio || 0);
this.integral = newVal * (this.info.refund_user_points_ratio || 0);
const homeMoney1 = newVal * (this.info.refund_property_fee_ratio || 0)
this.homeMoney = homeMoney1.toFixed(2);
const integral1 = newVal * (this.info.refund_user_points_ratio || 0)
this.integral = integral1.toFixed(2);
},
},