diff --git a/pages/gamll/dailyReport.vue b/pages/gamll/dailyReport.vue
index 869c16f..9cbd96a 100644
--- a/pages/gamll/dailyReport.vue
+++ b/pages/gamll/dailyReport.vue
@@ -27,25 +27,31 @@
今天 {{today}},{{fromData.header_content}}
-
-
-
- {{'★'+item.goods_name}}
-
-
- 市场价:{{item.cost_price_min}}
-
-
- 推广价:{{item.goods_price_min}}
-
-
- SKU:{{item.goods_no}}
-
-
- {{item.jd_short_url}}
-
+
+
+
+ {{'★'+item.goods_name}}
-
+
+ 市场价:{{item.cost_price_min}}
+
+
+ 推广价:{{item.goods_price_min}}
+
+
+ SKU:{{item.goods_no}}
+
+
+ {{item.jd_short_url}}
+
+
+ 抢购链接:{{item.applet_short_url}}
+
+
+ {{item.tail}}
+
+
+
@@ -81,7 +87,7 @@
onClickReport(item, type) {
this.fromData = item
uni.showLoading({
- title: type==1?'加载中':'复制中'
+ title: type == 1 ? '加载中' : '复制中'
});
this.getJDShortLinks(item.id, type)
this.getCurrentDate()
@@ -107,7 +113,7 @@
let text = ''
that.shortList.forEach(function(obj) {
text +=
- '★'+obj.goods_name +
+ '★' + obj.goods_name +
'\n' +
'市场价:' +
obj.goods_price_min +
@@ -115,11 +121,17 @@
'推广价:' +
obj.cost_price_min +
'\n' +
- 'SKU:' +
- obj.goods_no +
- '\n' +
- obj.jd_short_url +
- '\n'+
+ (obj.goods_no ? 'SKU:' +
+ obj.goods_no +
+ '\n' : '') +
+ (obj.jd_short_url ? obj.jd_short_url +
+ '\n' : '') +
+ (obj.applet_short_url ? '抢购链接:' +
+ obj.applet_short_url +
+ '\n' : '') +
+ (obj.tail ? '尾端内容' +
+ obj.tail +
+ '\n' : '') +
' \n'
})
uni.setClipboardData({