diff --git a/src/pages/discount-coupon/issue/components/template.vue b/src/pages/discount-coupon/issue/components/template.vue
index dad8fc6..91a8c23 100644
--- a/src/pages/discount-coupon/issue/components/template.vue
+++ b/src/pages/discount-coupon/issue/components/template.vue
@@ -74,7 +74,7 @@
- 需要先领取优惠券后再分享,这样其他扔领取了您分享的优惠券并消费后才会获得分润,否则无法获得分润
+ 需要先领取优惠券后再分享,这样其他人领取了您分享的优惠券并消费后才会获得分润,否则无法获得分润
diff --git a/src/pages/discount-coupon/management/index.vue b/src/pages/discount-coupon/management/index.vue
index f5b324d..d31d1a7 100644
--- a/src/pages/discount-coupon/management/index.vue
+++ b/src/pages/discount-coupon/management/index.vue
@@ -85,7 +85,7 @@
-
+
@@ -174,6 +174,13 @@ export default {
let { code, pageInfo } = await getList(this.queryForm);
this.listLoading = false;
if (code == "000000") {
+ pageInfo.list.forEach(function (item) {
+ item.forEach(function (items) {
+ if (items.docType == 'platform_coupon_huizhi') {
+ item.imgPath = partten.imagePath + items.filePath + '/' + items.fileName
+ }
+ });
+ });
this.list = Array.from(pageInfo.list);
this.total = pageInfo.total;
this.queryForm.pageNum = pageInfo.pageNum;