goodlistone.vue
9.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<template>
<view class="container">
<view class="goodlist">
<view class="goodlistitem flex" v-for="(item,index) in listshilist" :key="index" @click="entergood(item)">
<view class="goodlistimg">
<image :src="item.image" mode=""></image>
</view>
<view class="goodlistright">
<view class="goodrighttop flextwo">
<view class="goodname">{{item.name}}</view>
<view class="shareimg">
<image src="../static/share.png" mode="" class="sharebtn"></image>
<button open-type="share" class="shartype"></button>
</view>
</view>
<view class="zhibo flextwo">
<view class="zhiboleft" @click="gozhubo(item.anchor.id)">{{item.anchor.name}}{{item.anchor.platform}}</view>
<view class="kaibo">{{item.anchor_time.time}}开播</view>
</view>
<view class="zhiboprice">
直播价 ¥<text class="pricege">{{item.live_price}}</text>
</view>
<view class="cankao flextwo">
<view class="cankaoleft">参考价(京东¥{{item.r_price}}元)</view>
<view v-if="item.status_data==1">
<view v-if="item.user_goods==0">
<view class="canlaoright flexone" v-if="item.share==true" >
<image src="../static/naoling.png" mode="" class="naoling"></image>
提醒我
<button open-type="share" class="sharebtnk" v-if="notixing==1" @click.stop="sharefriend(index,item.id,item.share)"></button>
</view>
<view class="canlaoright flexone" v-else @click.stop="tixing(index,item.id)">
<image src="../static/naoling.png" mode="" class="naoling"></image>
提醒我
</view>
</view>
<view class="canceltixing" v-else @click.stop="canceltixing(index,item.id)">
取消提醒
</view>
</view>
<view v-if="item.status_data==2">
<view class="canlaoright flexone">
已上架
</view>
</view>
</view>
</view>
</view>
</view>
<!-- 弹出层 -->
<view class="register" v-if="noshow" @click="hideding">
<view class="registerwrap">
<view class="title">何时提醒我?</view>
<view class="titletext">在主播开始介绍商品时就提醒您</view>
<view class="title">如何提醒我</view>
<view class="titletext">在你允许消息通知后,届时会给您发送微信消息提醒</view>
<view class='noti flexone' @click="notibtn">
<image src="../static/selectzhong.png" mode="" class="selectxuan" v-if="noti"></image>
<image src="../static/select.png" mode="" class="selectxuan" v-else></image>
不再提示
</view>
<button class="buzai" @click.stop="know" v-if="share==true" open-type="share">我知道了</button>
<view class="buzai" @click.stop="know" v-else>我知道了</view>
</view>
</view>
</view>
</template>
<script>
import app from '../App.vue'
export default {
props: ["listshilist","mine","dingyuenumk"],
data() {
return {
goods_id: '',
noti: false, //提示和不提示按钮
noshow: false, //提示我弹出层
notixing: '', //不再提醒判断
goodindex: ''
}
},
onShareAppMessage(res) {
let that = this;
if (res.from === 'button') { // 来自页面内分享按钮
console.log(res.target)
}
return {
title: '早直播',
path: '/pages/xinyuan/xinyuan'
}
},
onLoad() {
},
methods: {
// 订阅消息
tixing(index, id) {
let that = this;
let notixing = uni.getStorageSync("notixing");
this.notixing = notixing;
console.log(that.notixing)
if (that.notixing == '') {
that.noshow = true
} else {
that.noshow = false
}
that.goodindex = index;
this.goods_id = id;
wx.getSetting({
// withSubscriptions: true,//是否获取用户订阅消息的订阅状态,默认false不返回
success(res) {
if (res.authSetting['scope.subscribeMessage']) {
uni.openSetting({ // 打开设置页
success(res) {
console.log(res.authSetting, 88888)
}
});
} else { // 用户没有点击“总是保持以上,不再询问”则每次都会调起订阅消息
uni.requestSubscribeMessage({
tmplIds: ["XrIccvxDK3IfW3DrnLtKAtKS-pL63BrG3W0Du9l7BrU"], //
success(res) {
console.log(res, 99999)
that.dingyue()
}
})
}
}
})
},
// 取消订阅
canceltixing(index, id) {
this.goods_id = id;
this.goodindex = index;
this.dingyue()
},
// 订阅
dingyue() {
let that = this;
let url = "goods/addUserGoods";
let param = {
goods_id: that.goods_id
}
console.log('参数', param)
app.post(url, param, "post").then(r => {
let newdingyuenumk=that.dingyuenumk;
if (that.listshilist[that.goodindex].user_goods == 0) {
that.listshilist[that.goodindex].user_goods = 1;
if(newdingyuenumk.indexOf(that.zhigoodlist[that.goodindex].id)==-1){
newdingyuenumk.push(that.zhigoodlist[that.goodindex].id)
}
uni.showToast({
title: '订阅成功',
icon: "none"
})
} else {
that.listshilist[that.goodindex].user_goods = 0;
newdingyuenumk.forEach(function(value,index,array){
if(value==that.zhigoodlist[that.goodindex].id){
newdingyuenumk.splice(index,1)
}
})
uni.showToast({
title: '取消订阅成功',
icon: "none"
})
}
// 直播个数超过10个 显示false
that.zhigoodlist.forEach(function(value,index,array){
if(newdingyuenumk.length>=10){
if(value.user_goods ==0){
value.share=true
}
}else{
if(value.user_goods ==0){
value.share=false
}
}
})
if(that.mine==1){
let newlistshilist=that.listshilist;
newlistshilist.splice(that.goodindex,1)
that.listshilist = newlistshilist;
}else{
that.listshilist = that.listshilist;
}
console.log(that.listshilist)
that.$forceUpdate();
that.$emit('litixing', that.listshilist)
}).catch(err => {
console.log(err)
})
},
// 不再提醒
notibtn() {
this.noti = !this.noti;
if (this.noti == true) {
uni.setStorageSync("notixing", 1);
this.notixing=1
} else {
uni.setStorageSync("notixing", '');
this.notixing=''
}
},
// 我知道了
know() {
this.noshow = false
},
// 取消订阅
hideding() {
this.noshow = false
},
// 分享给好友
sharefriend(index,id,share) {
let that = this;
if (uni.getStorageSync("token")) {
let notixing = uni.getStorageSync("notixing");
this.notixing = notixing;
if (that.notixing == '') {
that.noshow = true
} else {
that.noshow = false
}
that.goodindex = index;
that.goods_id = id;
that.share=share;
wx.getSetting({
// withSubscriptions: true,//是否获取用户订阅消息的订阅状态,默认false不返回
success(res) {
if (res.authSetting['scope.subscribeMessage']) {
uni.openSetting({ // 打开设置页
success(res) {
console.log(res.authSetting, 88888)
}
});
} else { // 用户没有点击“总是保持以上,不再询问”则每次都会调起订阅消息
uni.requestSubscribeMessage({
tmplIds: ["XrIccvxDK3IfW3DrnLtKAtKS-pL63BrG3W0Du9l7BrU"], //
success(res) {
// 去订阅
that.dingyue()
}
})
}
}
})
} else {
uni.showToast({
title: '请先登录',
icon: 'none'
})
setTimeout(function() {
uni.switchTab({
url: '/pages/mine/mine'
})
}, 1500)
}
},
// 进入链接页面
entergood(item){
uni.navigateTo({
url:"/pages/xinyuan/goodlianjie?code="+item.code+'&platform='+item.platform
})
},
// 进入主播页面
gozhubo(id){
uni.navigateTo({
url:'/pages/xinyuan/zhibodetail?id='+id
})
}
}
}
</script>
<style>
@import url("../style/goodlist");
</style>