diff --git a/pages/CommodityDetails/CommodityDetails.vue b/pages/CommodityDetails/CommodityDetails.vue index 0e87db0..f0b1603 100644 --- a/pages/CommodityDetails/CommodityDetails.vue +++ b/pages/CommodityDetails/CommodityDetails.vue @@ -597,16 +597,19 @@ } else { this.couponListfalse.push(e) } - if (this.couponId == e.couponId) { - if (this.totalPrice >= e.couponConsumePrice) { - this.Paidinprice = (this.totalPrice - e.couponPrice).toFixed(2) - this.coupon = e - } else { - this.Paidinprice = null - this.couponId = null - this.coupon = null - } - } + this.Paidinprice = null + this.couponId = null + this.coupon = null + // if (this.couponId == e.couponId) { + // if (this.totalPrice >= e.couponConsumePrice) { + // this.Paidinprice = (this.totalPrice - e.couponPrice).toFixed(2) + // this.coupon = e + // } else { + // this.Paidinprice = null + // this.couponId = null + // this.coupon = null + // } + // } }) } },