|
@@ -601,19 +601,13 @@ export default {
|
601
|
601
|
includes (arr1, arr2) {
|
602
|
602
|
return arr2.every(val => arr1.includes(val));
|
603
|
603
|
},
|
|
604
|
+ //选中优惠券
|
604
|
605
|
selectPupop (item, index) {
|
605
|
|
-
|
606
|
|
- if (item.type = 4) {
|
607
|
|
-
|
608
|
|
- } else {
|
609
|
|
-
|
610
|
|
- }
|
611
|
606
|
this.couponList[index].Select = !this.couponList[index].Select
|
612
|
607
|
this.selectCouponList = this.couponList.filter(res => {
|
613
|
608
|
return res.Select == true
|
614
|
609
|
})
|
615
|
610
|
this.selectCouponList.forEach(res => {
|
616
|
|
-
|
617
|
611
|
})
|
618
|
612
|
|
619
|
613
|
},
|