|
@@ -76,6 +76,9 @@ export default {
|
|
|
* */
|
|
|
this.couponList = [...this.coupons];
|
|
|
this.remainPrice = this.usingTotalDiscount;
|
|
|
+ if (this.parkMallCode === 4 && this.orderDetail?.discountInfo?.points[0]?.discountFee) {
|
|
|
+ this.remainPrice = this.remainPrice - this.orderDetail.discountInfo.points[0].discountFee
|
|
|
+ }
|
|
|
// 如果前海开启无积分上限的话,则
|
|
|
if ( parkMallCode === 5 && this.unLimitWeekendPoints && this.orderDetail.discountInfo?.points[0]?.discountFee) {
|
|
|
this.remainPrice = this.remainPrice - this.orderDetail?.discountInfo?.points[0]?.discountFee
|
|
@@ -104,7 +107,9 @@ export default {
|
|
|
// 验证剩余优惠券是否可勾选(无需验证:后端已计算可勾选的优惠券)
|
|
|
this.newGroupedCouponData()
|
|
|
this.setAllDisabled()
|
|
|
- this.isDisabledByRule(this.couponList[0], 0, 'showMsg');
|
|
|
+ if (this.parkMallCode === 4) {
|
|
|
+ this.isDisabledByRule(this.couponList[0], 0, 'showMsg');
|
|
|
+ }
|
|
|
})
|
|
|
}
|
|
|
},
|