coop.js
7.44 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
import {
getBindtapData,
getObjByListKeyValue
} from '../../utils/util';
import {
productMap
} from '../../const/custom-data';
let app = getApp();
Page({
data: {
groupMemberCoopVisible: false,
tipsCommonVisible: false,
authorizeVisible: false,
tipsGuideRegisterVisible: false,
animationPassVisible: false,
tipsInnerText: "",
options: null,
wishInfo: {},
wishList: [],
coopInfo: {},
userInfo: {},
indexInfo: {},
canShake: true,
status: 0,
animationShake: {}, // 摇一摇动画
aniTimeoutIndex: 0,
initComplete: false,
},
onShareAppMessage() {},
showAuth() {
this.setData({
authorizeVisible: true
})
},
onLoad(options) {
this.setData({
options
})
// 注册回调的入参
if (app.globalData.coopOptions) {
this.setData({
options: app.globalData.coopOptions
})
}
console.log("onLoad");
},
onHide() {},
onShow() {
console.log("onShow");
this.initData();
},
initData() {
console.log("coop - initData");
app.queryIndex().then((result) => {
this.setData({
indexInfo: app.globalData.indexInfo,
userInfo: app.globalData.userInfo,
})
this.queryWishbillDetail().then((result) => {
let {
wishInfo,
indexInfo
} = this.data;
// 如果是本人的话,就跳转到我首页
if (wishInfo.isSelfWishBill == 1) {
this.onPlayTooHandler();
return;
}
// 判断是否需要显示注册蒙层
// 条件 1.不是本人 2.未为她助力 3.未登陆
if (wishInfo.isSelfWishBill == 0 && wishInfo.isAssist != 1 && indexInfo.isCrmLogin != 1) {
this.setData({
tipsGuideRegisterVisible: true
})
}
})
this.initShake();
})
},
// 添加摇一摇
initShake() {
let _this = this;
wx.onAccelerometerChange(function (res) {
if (!_this.data.canShake || _this.data.tipsCommonVisible) {
return
}
if (res.x > 1) { //偏移量为2时触发,有的使用1
// 触发摇一摇
_this.queryWishbillAssist();
}
});
},
// 我也要玩
onPlayTooHandler() {
app.router.push({
openType: "reLaunch",
path: "index"
})
},
playShakeSound() {
const innerAudioContext = wx.createInnerAudioContext()
innerAudioContext.autoplay = true;
innerAudioContext.src = "https://kdcdn.oss-cn-shenzhen.aliyuncs.com/weapp/marubi/wish-list/mp3/shake.mp3";
innerAudioContext.onPlay(() => {
console.log('开始播放')
})
innerAudioContext.onError((res) => {
console.log(res.errMsg)
console.log(res.errCode)
})
},
// 助力
queryWishbillAssist() {
let {
wishInfo
} = this.data;
if (!this.data.canShake) {
return;
}
// 在弹窗状态
if (this.data.tipsCommonVisible) {
return;
}
// 引导注册
if (this.data.tipsGuideRegisterVisible) {
return;
}
// 自己表单
if (wishInfo.isSelfWishBill == 1) {
return;
}
// 已经助力
// if (wishInfo.isAssist == 1) {
// return;
// }
this.setData({
canShake: false
})
this.playShakeSound();
app.post({
url: app.api.wishbillAssist,
data: {
billCode: this.data.options.code
}
}).then((result) => {
let status = result.status;
if (status != 1) {
this.setData({
status: status
})
}
if (status == 1) {
this.setData({
animationPassVisible: true
})
setTimeout(() => {
// 助力成功
// 合并数据
let wishList = result.elasticValueList;
wishList.forEach(element => {
let product = productMap[element.prizeDefineCode + ""];
element = Object.assign(element, product);
let progress = element.elasticValue / element.conditionElasticValue * 100;
if (progress > 100) progress = 100;
// 直接计算坐标
let progressLeft = progress * 3.22 - 51;
element.progress = progress;
element.progressLeft = progressLeft;
});
this.setData({
coopInfo: result,
wishList: wishList,
status: status,
animationPassVisible: false
})
this.queryWishbillDetail();
}, 2000);
} else if (status == 2) {
// 助力失败
this.setData({
tipsCommonVisible: true,
tipsInnerText: `亲爱的女神,您已为${wishInfo.member.nickname}好友助力过,每人只能为一位好友助力噢!`
})
} else if (status == 3) {
this.setData({
tipsCommonVisible: true,
tipsInnerText: "不能为自己助力哦~"
})
} else if (status == 4) {
// 好友是团购会员
this.setData({
groupMemberCoopVisible: true
})
} else {
// 助力失败
this.setData({
tipsCommonVisible: true,
tipsInnerText: "助力失败"
})
this.setData({
canShake: true
})
}
})
},
// 获取心愿单详情
queryWishbillDetail() {
console.log("queryWishbillDetail code:", this.data.options.code);
return new Promise((resolve, reject) => {
app.post({
url: app.api.wishbillDetail,
data: {
billCode: this.data.options.code
}
}).then((result) => {
// let status = result.isAssist;
// this.setData({
// status
// })
let wishList = result.wishGifts;
wishList.forEach(element => {
let product = productMap[element.prizeDefineCode + ""];
element = Object.assign(element, product);
let progress = element.elasticValue / element.conditionElasticValue * 100;
if (progress > 100) progress = 100;
// 直接计算坐标
let progressLeft = progress * 3.22 - 51;
element.progress = progress;
element.progressLeft = progressLeft;
});
this.setData({
wishInfo: result,
wishList: wishList,
initComplete: true,
})
console.log("wishInfo:", this.data.wishInfo);
console.log("wishList:", this.data.wishList);
resolve();
})
});
},
// 触发摇一摇测试入口
queryWishbillAssistTest() {
let isTest = app.globalData.isTest;
if (!isTest) {
return;
}
this.queryWishbillAssist();
},
hideMask() {
this.setData({
groupMemberCoopVisible: false,
tipsCommonVisible: false,
authorizeVisible: false,
tipsGuideRegisterVisible: false,
})
},
// 子组件事件
evtcomp(evt) {
let {
name,
data
} = evt.detail;
console.log("name:", name);
switch (name) {
case "_evt_hide_mask":
this.hideMask();
let cid = data && data.cid || "";
if (cid == "play-too") {
this.onPlayTooHandler();
}
break;
// 前往注册页面
case "_evt_to_register":
this.hideMask();
app.globalData.coopOptions = this.data.options;
app.router.push({
path: "login",
query: {
redirect: "coop"
}
})
break;
case "_evt_auth_complete":
this.hideMask();
this.initData();
break;
default:
break;
}
},
})