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) {