From e59eab06f9f00102c7584d468093183d72df6f1e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com>
Date: Thu, 25 Sep 2025 15:37:04 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=89=A9=E4=B8=9A=E7=BC=B4?=
=?UTF-8?q?=E8=B4=B9=E9=A1=B5=E9=9D=A2=E9=87=91=E9=A2=9D=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/community/propertyPayment/index.vue | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/packages/community/propertyPayment/index.vue b/packages/community/propertyPayment/index.vue
index 55165131..9a99dc86 100644
--- a/packages/community/propertyPayment/index.vue
+++ b/packages/community/propertyPayment/index.vue
@@ -138,7 +138,7 @@
合计
¥
- {{ currentMoney }}
+ {{ currentMoney.toFixed(2) }}
立即支付
@@ -401,7 +401,7 @@ export default {
}
});
});
- this.currentMoney = money;
+ this.currentMoney = money ? money.toFixed(2) : 0.00;
},
//具体选择
itemsCheckChange(e, indes, index) {
@@ -425,7 +425,7 @@ export default {
}
});
});
- this.currentMoney = money;
+ this.currentMoney = money ? money.toFixed(2) : 0.00;
},
//切换支付方式
changePayType(e) {