|
@@ -426,7 +426,12 @@
|
|
|
store_id:that.system_store.id
|
|
|
}
|
|
|
getCouponsServeOrderPrice(this.totalPrice, data).then(res => {
|
|
|
- that.$set(that.coupon, 'list', res.data);
|
|
|
+ // console.log(that.coupon,'that.coupon');
|
|
|
+ const arr = res.data.map((re)=>{
|
|
|
+ re.title = re.coupon_title;
|
|
|
+ return re
|
|
|
+ })
|
|
|
+ that.$set(that.coupon, 'list', arr);
|
|
|
that.openType = 1;
|
|
|
});
|
|
|
},
|