From 2b90922cc3c391589bc1a1c01d3631cb16cf7bef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Wed, 24 Sep 2025 09:24:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=A5=BD=E5=BA=97=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E8=BF=94=E5=9B=9E=E7=9A=84=E7=A7=AF=E5=88=86=E7=9A=84?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/localLife/pay/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }, },