修改好店支付返回的积分的逻辑

This commit is contained in:
赵毅 2025-09-24 09:24:09 +08:00
parent d4c774522e
commit 2b90922cc3

View File

@ -121,8 +121,8 @@ export default {
}, },
watch: { watch: {
Money(newVal) { Money(newVal) {
this.homeMoney = Math.round(newVal * (this.info.refund_property_fee_ratio || 0)); this.homeMoney = newVal * (this.info.refund_property_fee_ratio || 0);
this.integral = Math.round(newVal * (this.info.refund_user_points_ratio || 0)); this.integral = newVal * (this.info.refund_user_points_ratio || 0);
}, },
}, },