|
@@ -294,6 +294,12 @@ export default {
|
|
|
this.isMember = this.memberGrade.hasOwnProperty('selected')? !this.memberGrade.selected : !this.memberGrade.defaultSelected
|
|
|
this.isReduces = this.consume.hasOwnProperty('selected')? !this.consume.selected : !this.consume.defaultSelected
|
|
|
}
|
|
|
+ if(!this.isMember && this.remainPrice > this.availableDiscountFee && this.checkedList.indexOf('member') < 0) {
|
|
|
+ this.isMember = true
|
|
|
+ }
|
|
|
+ if(!this.isReduces && this.remainPrice > this.availableDiscountFee && this.checkedList.indexOf('reduces') < 0) {
|
|
|
+ this.isReduces = true
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
maxReduceDiscountInit() {
|