|
@@ -335,7 +335,7 @@ export default {
|
|
|
if (parkMallCode === 5 && this.remainPrice >= this.availableDiscountFee) {
|
|
|
if ( showMsg ) return true
|
|
|
return Toast({
|
|
|
- message: `每日最高可抵扣${this.maxOneDayDiscountFee}元`,
|
|
|
+ message: `优惠券已达当日使用上限,不可再用`,
|
|
|
icon: 'none',
|
|
|
});
|
|
|
}
|
|
@@ -344,7 +344,7 @@ export default {
|
|
|
if (oneDayLimitation && this.remainPrice >= this.availableDiscountFee) {
|
|
|
if ( showMsg ) return true
|
|
|
return Toast({
|
|
|
- message: `每日最高可抵扣${maxOneDayDiscountFee}元`,
|
|
|
+ message: parkMallCode === 5 ? '当日优惠已达上限,不可再用' : `每日最高可抵扣${maxOneDayDiscountFee}元`,
|
|
|
icon: 'none',
|
|
|
});
|
|
|
}
|