create-wish.js
7 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
import {
getBindtapData
} from '../../utils/util';
import {
productMap
} from '../../const/custom-data';
let app = getApp();
Page({
data: {
tipsBorderVisible: false,
tipsRegisterVisible: false,
tipsGroupMemberVisible: false,
tipsNewMemberVisible: false,
tipsWishVisible: false,
tipsShakeVisible: false,
tipsCreateCompleteVisible: false,
tipsCommonVisible: false,
tipsInnerText: "",
curStatus: 1, // 当前场景
candidate: [], // 心愿候选列表
myWishList: [], // 我的心愿列表
valTotal:0, // 心愿单累计需要弹力值
curWish: {}, // 当前选择心愿
userInfo: {}
},
onShareAppMessage() {},
onLoad(options) {
console.log("cwish------");
this.initData();
},
initData() {
// 还原缓存心愿单
let myWishList = app.store.getItem("wish") || [];
this.setData({
myWishList
})
app.queryIndex().then((result) => {
this.setData({
userInfo: app.globalData.userInfo
})
this.queryWishbillPrizeCandidate();
});
},
/**
* 提交前判断状态
* 判断顺序
* 1.crm登陆
* 2.黑名单 (团购会员)
* 3.新会员
*
*/
checkSubmit() {
return new Promise((resolve, reject) => {
let indexInfo = app.globalData.indexInfo;
let {
isCrmLogin,
isNewMember,
isBlackList,
hadAnswerQuestion,
isSelfAssist,
wishBillCode
} = indexInfo;
// 未登陆 出注册弹窗提示
// isCrmLogin = 1;
if (isCrmLogin == 0) {
this.setData({
tipsRegisterVisible: true
})
reject();
return;
}
// 黑名单
if (isBlackList == 1) {
this.setData({
tipsGroupMemberVisible: true
})
reject();
return;
}
// 新老会员
// isNewMember
// hadAnswerQuestion = 1; //硬编码答题
if (isNewMember == 1) {
// 新会员
if (hadAnswerQuestion) {
// 已经答题,提示创建心愿单
resolve();
} else {
// 未答题,提示答题
this.setData({
tipsNewMemberVisible: true
})
reject();
}
} else {
// 老会员 直接答题
resolve();
}
});
},
/**
* 点击提交心愿单按钮
* 首先要根据自身状态判断
*/
onSubmitHandler() {
this.checkSubmit().then((result) => {
let valTotal = 0;
this.setData({
tipsWishVisible: true
})
console.log("wish:",this.data.myWishList);
}).catch((err) => {});;
},
// billCode
// 创建心愿单
queryWishbillCreate() {
console.log("queryWishbillCreate");
// let myWishList = this.data.candidate;
// console.log("this.data.candidate:",this.data.candidate);
// console.log("myWishList:",myWishList);
// let myWishList = this.data.myWishList;
let myWishList = this.data.candidate[0].products;
let wishBillCodeList = [];
myWishList.forEach(element => {
wishBillCodeList.push(element.prizeDefineCode);
});
console.log("wishBillCodeList:", wishBillCodeList);
app.post({
url: app.api.wishbillCreate,
data: ["ee3e985407fd40abb22b5f75f0f489a1", "5e46119a5ad04649815b7c0171fd7e9a", "1301a7070b57433986a12ee982103b71"]
}).then((result) => {
console.log("创建成功")
console.log("result:", result);
}).catch((err) => {
console.log("err:", err);
});
},
/**
* 点击圆点 显示产品提示
* @param {*} evt
*/
onShowTipsBorderHandler(evt) {
let curIndex = getBindtapData(evt, "index");
console.log("curIndex:", curIndex);
let curData = productMap[curIndex + ""];
let product = this.getProductByCode(curIndex);
curData = Object.assign(curData, product)
console.log("product:", product);
console.log("curData:", curData);
this.setData({
curWish: curData,
tipsBorderVisible: true,
});
},
/**
* 隐藏产品提示
* @param {*} evt
*/
onHideTipsBorderHandler(evt) {
console.log("onHideTipsBorderHandler");
this.setData({
// curWish: null,
tipsBorderVisible: false,
})
},
/**
* 加入心愿单
* @param {*} evt
*/
onAddWishHandler(evt) {
let myWishList = this.data.myWishList;
let curWish = this.data.curWish;
// 检查愿望数是否超出
if (myWishList.length >= 3) {
this.setData({
tipsInnerText: "许愿数超出上限啦~",
tipsCommonVisible: true
})
return;
}
// // 查重
let uni = myWishList.some((item) => {
return item.prizeDefineCode == curWish.prizeDefineCode
})
if (uni) {
this.setData({
tipsInnerText: "心愿重复啦~",
tipsCommonVisible: true
})
return;
}
// 写入愿望单
myWishList.push(curWish);
this.setData({
myWishList
})
app.store.setItem("wish", myWishList);
},
/**
* 取消心愿单
* @param {*} evt
*/
onCancelWishHandler(evt) {
let curData = getBindtapData(evt);
console.log("curData:", curData);
let myWishList = this.data.myWishList;
myWishList = myWishList.filter((item) => {
return item.prizeDefineCode != curData.prizeDefineCode
})
console.log("myWishList:", myWishList);
this.setData({
myWishList
})
app.store.setItem("wish", myWishList);
},
/**
* 换一批
* @param {*} evt
*/
onChangeStatusHandler(evt) {
let curStatus = this.data.curStatus;
curStatus++;
if (curStatus > 3) {
curStatus = 1;
}
this.setData({
curStatus: curStatus,
tipsBorderVisible: false
})
},
/**
* 根据唯一码/code 索引
*/
getProductByCode(code) {
let result = null;
let candidate = this.data.candidate;
candidate.forEach(element => {
if (element.prizeDefineCode == code) {
result = element;
}
});
return result;
},
// 心愿单产品候选列表
queryWishbillPrizeCandidate() {
return new Promise((resolve, reject) => {
app.post({
url: app.api.wishbillPrizeCandidate,
data: {}
}).then((result) => {
this.setData({
candidate: result
})
console.log("candidate:", this.data.candidate);
resolve();
}).catch((err) => {
reject();
});
});
},
// 子组件事件
evtcomp(evt) {
let {
name,
data
} = evt.detail;
switch (name) {
// 隐藏蒙层
case "_evt_hide_mask":
this.setData({
ruleTipsVisible: false,
tipsGroupMemberVisible: false,
tipsNewMemberVisible: false,
tipsWishVisible: false,
tipsWishVisible: false,
tipsCreateCompleteVisible: false,
tipsCommonVisible: false
})
break;
// 创建心愿单
case "_evt_create_wish":
this.setData({
tipsWishVisible: false
})
this.queryWishbillCreate();
break;
default:
break;
}
},
})