diff --git a/packages/localLife/pay/index.vue b/packages/localLife/pay/index.vue index 03ec4138..727dbdbd 100644 --- a/packages/localLife/pay/index.vue +++ b/packages/localLife/pay/index.vue @@ -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); }, },