diff --git a/packages/localLife/pay/index.vue b/packages/localLife/pay/index.vue index d50ffb84..6d3ecd33 100644 --- a/packages/localLife/pay/index.vue +++ b/packages/localLife/pay/index.vue @@ -121,8 +121,8 @@ export default { }, watch: { Money(newVal) { - this.homeMoney = Math.round(newVal * (this.info.refund_property_fee_ratio || 0)); - this.integral = Math.round(newVal * (this.info.refund_user_points_ratio || 0)); + this.homeMoney = newVal * (this.info.refund_property_fee_ratio || 0); + this.integral = newVal * (this.info.refund_user_points_ratio || 0); }, },