@@ -588,7 +588,7 @@
}
// 特价
if(item.promoType=='PROMO_PROD'){
- this.totalDiscount += item.conditionValue * item.qty
+ this.totalDiscount += (item.orginPrice - item.conditionValue) * item.qty
// 满赠
item.giftQty = item.promoType=='BUY_PROD_GIVE_PROD' ? Math.floor(item.qty / item.conditionValue)*item.resultValue : 0