From 4c26b12fa50a9e96f7ee5af2c50e5723424ed172 Mon Sep 17 00:00:00 2001
From: "PC-20210316OUOY\\Administrator" <812952667@qq.com>
Date: Thu, 11 Nov 2021 10:39:52 +0800
Subject: [PATCH] =?UTF-8?q?1.=E5=88=A4=E6=96=AD=E5=8A=A0=E6=B2=B9=E7=AB=99?=
=?UTF-8?q?=E7=82=B9=E4=B8=BA=E7=A9=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../pages/goods/coupon-details/coupon-details.vue | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/high-unionPay/pages/goods/coupon-details/coupon-details.vue b/high-unionPay/pages/goods/coupon-details/coupon-details.vue
index a217a04..0085a7f 100644
--- a/high-unionPay/pages/goods/coupon-details/coupon-details.vue
+++ b/high-unionPay/pages/goods/coupon-details/coupon-details.vue
@@ -13,7 +13,7 @@
领取时间:{{oneTime | formatDate('-')}}
使用有效期:{{twoTime | formatDate('-')}}
消费时间:{{threeTime | formatDate('-')}}
- 加油站点:{{couponDesInfo.couponCodeInfo.storeName}}
+ 加油站点:{{storeName}}
@@ -109,7 +109,8 @@
menddesId: '',
pageNum: 1,
pageSize: 10,
- isNoMoreData: false
+ isNoMoreData: false,
+ storeName : ''
}
},
onLoad(option) {
@@ -157,6 +158,9 @@
this.threeTime = res.return_data.highUserCoupon.consumeTime;
return;
}
+ if(res.return_data.couponCodeInfo.storeName && res.return_data.couponCodeInfo.storeName != undefined){
+ this.storeName = res.return_data.couponCodeInfo.storeName;
+ }
this.getStoreListByCoupon();
this.oneTime = res.return_data.highUserCoupon.createTime;
this.twoTime = res.return_data.highUserCoupon.useEndTime;