From 2030e5e84d4db3a4a91f0eb36f297d85ec0d48da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Sat, 11 Oct 2025 14:40:19 +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=E7=89=A9=E4=B8=9A=E5=85=AC=E7=A7=AF=E9=87=91=E5=92=8C?= =?UTF-8?q?=E7=A7=AF=E5=88=86=E7=9A=84=E6=95=B0=E6=8D=AE=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E5=BC=82=E5=B8=B8=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/localLife/pay/index.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); }, },