goodtail.js
6.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
// pages/home/goodtail/goodtail.js
const app = getApp();
Page({
/**
* 页面的初始数据
*/
data: {
//轮播图
imgUrls: [],
indicatorDots: false,
autoplay: false,
interval: 5000,
duration: 500,
goodtail_id: '',
goodetail: [],
content: '',
massageCon: [],
myissue: '',
off: true,
status: '',
isFocus: '',
goods_user_id: '',
focu:false
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
console.log('9999', options.goodtail_id)
if (options.goodtail_id!=undefined){
this.setData({
goodtail_id: options.goodtail_id
})
}else{
let goods_id = wx.getStorageSync('goods_id');
this.setData({
goodtail_id: goods_id
})
}
this.getDetail();
console.log('8887655', this.data.goodtail_id)
},
paste(e) {
console.log(e)
let word=e.currentTarget.dataset.word
let that = this
wx.showToast({
title: '复制成功',
})
wx.setClipboardData({
data:word,
success: function (res) {
wx.getClipboardData({
success: function (res) {
console.log(res.data) // data
}
})
}
})
},
// 获取商品详情接口
getDetail: function(){
let that = this;
console.log('34234234', that.data.goodtail_id)
let url = "/api/portal/goods/getGoodsDetail";
let params = {
token: wx.getStorageSync('token'),
goods_id: that.data.goodtail_id
}
app.post(url, params).then((res) => {
console.log(res)
that.setData({
goodetail: res,
myissue: res.is_mine,
imgUrls: res.images,
status: res.status,
isFocus: res.if_collect,
goods_user_id: res.user_id,
off: !res.is_mine
})
wx.setNavigationBarTitle({
title: res.title
})
})
},
// 写留言
getMassage: function(e){
let that = this;
if (that.data.content==''){
wx.showToast({
title: '请输入留言',
icon:'none'
})
return false
}
let url = "/api/portal/goods/putComment";
let params = {
token: wx.getStorageSync('token'),
goods_id: that.data.goodtail_id,
content: that.data.content,
goods_user_id: that.data.goods_user_id
}
app.post(url, params).then((res) => {
console.log(res)
if(res==""){
that.setData({
goodetail: res,
clearInput: '',
content:''
})
wx.showToast({
title: '评论成功',
icon: 'none'
})
setTimeout(function(){
// wx.navigateBack({
// checked:true
// })
that.getDetail()
},200)
}
// wx.setTimeout(function(){
// // 刷新当前页面
// getCurrentPages()[getCurrentPages().length - 1].onLoad()
// },1500)
})
},
// 获取留言内容
getContent: function(e){
this.setData({
content: e.detail.value
})
},
// 点击留言按钮显示输入框
leaveTap: function(e){
this.setData({
myissue: false,
off: false,
focu:true
})
},
// 点击 已售/已下架
soldOut: function(e){
let that = this;
let url = "/api/portal/goods/lowerFrame";
let params = {
token: wx.getStorageSync('token'),
goods_id: that.data.goodtail_id
}
app.post(url, params).then((res) => {
wx.navigateTo({
url: '../mypublish/mypublish',
})
})
},
// 收藏
focusFavoriteTab: function (e) {
let that = this;
let isFocus = that.data.isFocus;
let url = "/api/portal/goods/doCollect";
let params = {
token: wx.getStorageSync('token'),
goods_id: that.data.goodtail_id
}
app.post(url, params).then((res) => {
if(isFocus){
wx.showToast({
title: "取消收藏",
icon: 'success',
duration: 1000
});
that.setData({
isFocus: false
})
}else{
wx.showToast({
title: res.data == 1?"收藏失败":"收藏成功",
icon: 'success',
duration: 1000
});
that.setData({
isFocus: true
})
}
}).catch((errMsg) => {})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
let that = this;
let goodtail_id = that.data.goodtail_id;
return {
title: '活动详情分享', // 转发后 所显示的title
// path: '/pages/home/buildtextdetail/buildtextdetail?buildid='+buildid+'&gettoken='+newtoken, // 相对的路径
path: '/pages/index/index?goodtail_id=' + goodtail_id + '&status=' + 6,//分娩笔记分享2
//path: '/pages/index/index?childrenid',
success: (res) => { // 成功后要做的事情
console.log(res)
// console.log(res.shareTickets[0])
// console.log
// wx.getShareInfo({
// shareTicket: res.shareTickets[0],
// success: (res)=> {
// that.setData({
// isShow:true
// })
// console.log(that.setData.isShow)
// },
// fail: function (res) { console.log(res) },
// complete: function (res) { console.log(res) }
// })
},
fail: function (res) {
// 分享失败
console.log(res)
}
}
}
})