index.js
5.15 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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
const app = getApp();
let self = null;
let imgDraw = {
"width": "650px",
"height": "843px",
"background": "https://mshopimg.yolipai.net/miniapp/images/zhg/bg-zuhegou.jpg",
"views": [
{ // 头像
"type": "image",
"url": "https://desk-fd.zol-img.com.cn/t_s960x600c5/g5/M00/0F/08/ChMkJlauzXWIDrXBAAdCg2xP7oYAAH9FQOpVAIAB0Kb342.jpg",
"css": {
"width": "100px",
"height": "100px",
"top": "20px",
"left": "275px",
"borderRadius": "100px",
"mode": "scaleToFill",
"borderWidth": "2px",
"borderColor": "#fff",
}
},
{ //昵称
"type": "text",
"text": "我是店铺名称名称名称名称名称名称名称名称名称名称名称名称名称名称",
"css": {
"width": "400px",
"color": "#fff",
"top": "136px",
"left": "137px",
"fontSize": "26px",
"maxLines": "1",
}
},
{ //10元任选3件
"type": "text",
"text": "10元任选3件",
"css": {
"color": "#fff",
"width": "650px",
"top": "270px",
"fontSize": "70px",
"maxLines": "1",
"textAlign": "center",
"fontWeight": "bold",
}
},
{ //活动时间
"type": "text",
"text": "活动时间:2021.07.06 - 2021.07.08",
"css": {
"color": "#333",
"width": "650px",
"top": "440px",
"fontSize": "26px",
"fontWeight": "normal",
"maxLines": "1",
"textAlign": "center"
}
},
{ // 码
"type": "qrcode",
"content": "二维码地址",
"css": {
"color": "#000",
"width": "200px",
"height": "200px",
"top": "525px",
"left": "225px",
}
},
{ // 扫码提示
"type": "text",
"text": "长按扫码即可参与活动",
"css": {
"color": "#666",
"width": "650px",
"top": "750px",
"fontSize": "26px",
"textAlign": "center"
}
},
]
};
Page({
/**
* 页面的初始数据
*/
data: {
showRule: false,
showMask: false,
showNum: false,
haveAdded: false,
imgDraw: imgDraw,
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
self = this;
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
},
/**
* 点击规则详情,弹出规则
*/
showRule() {
this.setData({
type: 0, //控制显示规则详情还是提示信息,0规则详情,1提示信息
showRule: true,
showMask: true,
});
},
/**
* 点击关闭按钮关闭规则详情弹窗
*/
closeRule() {
this.setData({
showRule: false,
showMask: false,
});
},
/**
* 点击提示信息
*/
showInfo() {
this.setData({
type: 1,
showRule: true,
showMask: true,
});
},
/**
* 加入购物车
*/
addToCart() {
let haveAdded = !this.data.haveAdded;
let title = '';
if(haveAdded) {
title = '加入购物车成功';
this.setData({
num: 1,
showNum: true,
haveAdded,
});
wx.showToast({
title: title,
icon: 'success',
});
} else {
wx.showModal({
title: '温馨提示',
content: '确定将该商品移出购物车?',
success (res) {
if (res.confirm) {
console.log('用户点击确定');
title = '移除购物车成功';
self.setData({
showNum: false,
haveAdded: false,
});
wx.showToast({
title: title,
icon: 'success',
});
} else if (res.cancel) {
console.log('用户点击取消')
self.setData({
haveAdded: true,
});
}
}
})
}
},
/**
* 增加数量
*/
add() {
this.setData({
num: ++this.data.num,
});
},
/**
* 减少数量
*/
sub() {
let num = this.data.num;
if(num >= 2) {
this.setData({
num: --this.data.num,
});
};
if(num == 1) {
// this.setData({
// showNum: false,
// haveAdded: false,
// });
wx.showModal({
title: '温馨提示',
content: '确定将该商品移出购物车?',
success (res) {
if (res.confirm) {
console.log('用户点击确定');
// title = '移除购物车成功';
self.setData({
showNum: false,
haveAdded: false,
});
wx.showToast({
title: '移除购物车成功',
icon: 'success',
});
} else if (res.cancel) {
console.log('用户点击取消')
self.setData({
haveAdded: true,
});
}
}
})
}
},
/**
* 分享
*/
share() {
this.setData({
showMask: true,
showPoster: true,
});
},
/**
* 关闭海报
*/
closePoster() {
this.setData({
showMask: false,
showPoster: false,
});
},
onImgOK(e) {
console.log(e.detail.path);
this.setData({
myimg: e.detail.path,
});
},
})