|
@@ -260,7 +260,10 @@ export default {
|
|
|
this.remainPrice = this.memberGrade.discountFee + this.remainPrice;
|
|
|
} else if (!this.isMember) {
|
|
|
this.remainPrice = this.remainPrice - this.memberGrade.discountFee;
|
|
|
- this.maxReduceDiscount = remainConsumeTime;
|
|
|
+ // 如果不是沈阳,重新计算优惠
|
|
|
+ if(this.parkMallCode !== 4 ) {
|
|
|
+ this.maxReduceDiscount = remainConsumeTime;
|
|
|
+ }
|
|
|
}
|
|
|
const [isCrossMessage = false, maxReduceDiscount = this.maxReduceDiscount] = this.crossMessage();
|
|
|
if (isCrossMessage) {
|
|
@@ -275,12 +278,13 @@ export default {
|
|
|
const reduceHours = (maxOneTimeDiscountFee - this.remainPrice) / hourPrice;
|
|
|
if (this.checkedList.indexOf('reduces') > -1) {
|
|
|
this.remainPrice = hourPrice + this.remainPrice;
|
|
|
- // 计算最大上限
|
|
|
+ // 如果不是沈阳,重新计算计算最大上限
|
|
|
if(this.parkMallCode !== 4 ) {
|
|
|
this.maxReduceDiscount = remainConsumeTime > maxOneTimeDiscountFee / hourPrice ? maxOneTimeDiscountFee / hourPrice : remainConsumeTime;
|
|
|
}
|
|
|
} else {
|
|
|
this.remainPrice = this.remainPrice - hourPrice;
|
|
|
+ // 如果不是沈阳,重新计算计算最大上限
|
|
|
if(this.parkMallCode !== 4 ) {
|
|
|
this.maxReduceDiscount = remainConsumeTime > maxOneTimeDiscountFee / hourPrice ? maxOneTimeDiscountFee / hourPrice : remainConsumeTime;
|
|
|
}
|