diff --git a/public/components/property/payFeeDiscount/payFeeDiscount.js b/public/components/property/payFeeDiscount/payFeeDiscount.js index 3231266ce..3c4d085a6 100644 --- a/public/components/property/payFeeDiscount/payFeeDiscount.js +++ b/public/components/property/payFeeDiscount/payFeeDiscount.js @@ -91,7 +91,7 @@ let _selectDiscount = []; $that.payFeeDiscountInfo.selectDiscountIds.forEach(item => { $that.payFeeDiscountInfo.feeDiscounts.forEach(disItem => { - if (item == disItem.discountId && disItem.discountPrice > 0) { + if (item == disItem.discountId && disItem.discountPrice != 0) { _totalDiscountMoney += parseFloat(disItem.discountPrice); _selectDiscount.push(disItem); }