register.js
6.67 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
let Date = require('../../utils/date.js');
let Utils = require('../../utils/util.js');
let app = getApp();
Page({
data: {
windowWidth: 0,
tipsInnerText: "",
redirect: "createWish", // 注册完的重定向页面
tipsRegisteredVisible: false,
tipsCommonVisible: false,
tipsPrivacyVisible: false,
// form start
name: "",
mobile: "",
verifyCode: "",
birthday: "",
password: "",
sex: "",
sexList: [{
label: "女",
value: 0
},
{
label: "男",
value: 1
},
],
isTerms: false,
// form end
thumbX: 44,
thumbXTarget: 350, // 正确的指数
thumbXFixed: 20, // 运行的误差
movableViewX: 0, // 滑块的值
isPlzAuth: false, //滑块验证
auth_time: 0,
sendAuthCode: true,
/*布尔值,通过v-show控制显示‘获取按钮’还是‘倒计时’ */
startTime: "",
endTime: "",
},
onShareAppMessage() {},
onLoad(options) {
let windowWidth = wx.getSystemInfoSync().windowWidth;
this.setData({
windowWidth
})
let {
redirect
} = options;
if (redirect) {
this.setData({
redirect
})
}
this.initData();
},
initData() {
let curDate = new Date();
let startYear = curDate.getFullYear() - 80;
let endYear = curDate.getFullYear() - 15;
let mouth = curDate.getMonth() + 1;
let day = curDate.getDate();
if (mouth < 10) mouth = "0" + mouth;
if (day < 10) day = "0" + day;
let startTime = startYear + "-" + mouth + "-" + day;
let endTime = endYear + "-" + mouth + "-" + day;
this.setData({
startTime,
endTime
})
},
showLog(msg) {
wx.showToast({
title: msg,
icon: "none"
})
},
doRegister() {
let _this = this;
this.checkForm().then((result) => {
// 注册
let data = {
mobile: this.data.mobile,
name: this.data.name,
birthday: this.data.birthday,
verifyCode: this.data.verifyCode,
password: this.data.password,
sex: this.data.sex,
}
app.post({
url: app.api.crmRegister,
data: data
}).then((result) => {
if (result.status == 1) {
app.router.push({
openType: "redirectTo",
path: _this.data.redirect
})
} else if (result.status == 2) {
this.setData({
tipsRegisteredVisible: true,
})
} else {
this.setData({
tipsInnerText: result.errMsg,
tipsCommonVisible: true,
})
}
});
})
},
// 表单检查
checkForm() {
return new Promise((resolve, reject) => {
if (!this.data.mobile) {
this.showLog("请输入手机号码");
reject();
} else if (!Utils.checkMobile(this.data.mobile)) {
this.showLog("请输正确手机号码");
reject();
} else if (!this.data.name) {
this.showLog("请输入姓名");
reject();
} else if (!this.data.birthday) {
this.showLog("请输入生日");
reject();
// } else if (!this.data.password) {
// this.showLog("请输入登陆密码");
// reject();
} else if (!this.data.verifyCode) {
this.showLog("请输入验证码");
reject();
// } else if (this.data.sex != 0 && this.data.sex != 1) {
// this.showLog("请选择性别");
// reject();
} else if (!this.data.isPlzAuth) {
this.showLog("请完成拼图验证");
reject();
} else if (!this.data.isTerms) {
this.showLog("请同意服务条款");
reject();
} else {
resolve();
}
});
},
// 是否同意条款
onTermsHandler() {
console.log("onTermsHandler");
this.setData({
isTerms: !this.data.isTerms
})
},
// 跳转至会员条款
onPolicyHandler() {
this.setData({
tipsPrivacyVisible:true
})
},
// 跳转到登陆页面
toLoginHandler() {
app.router.push({
openType: "redirectTo",
path: "login",
query: {
redirect: this.data.redirect
}
})
},
// 获取验证码
reqGetSmsRequest() {
if (!this.data.sendAuthCode) return;
let mobile = this.data.mobile
if (!mobile || !Utils.checkMobile(mobile)) {
this.showLog("请输入正确的手机号码");
return
}
if (!this.data.isPlzAuth) {
this.showLog("请完成拼图验证");
return
}
this.getAuthCode();
app.post({
url: app.api.mobileVerifyCode,
data: {
picVerifyCode: "",
mobile: mobile,
forRegister: 1
}
}).then((result) => {
wx.showToast({
title: "短信发送成功",
icon: "none"
})
});
},
// 倒数
getAuthCode() {
let _this = this;
_this.setData({
sendAuthCode: false,
auth_time: 60
})
var auth_timetimer = setInterval(() => {
_this.setData({
auth_time: _this.data.auth_time - 1
})
if (_this.data.auth_time <= 0) {
_this.setData({
sendAuthCode: true
});
clearInterval(auth_timetimer)
}
}, 1000)
},
// 监听滑动变量
onThumbChangeHandler(e) {
let thumbX = e.detail.x * 750 / this.data.windowWidth + 44;
this.setData({
thumbX: thumbX,
})
},
// 滑动停止
onTouchEndHandler(e) {
let {
thumbX,
thumbXTarget,
thumbXFixed
} = this.data;
let result = Math.abs(thumbXTarget - thumbX);
if (result < thumbXFixed) {
this.showLog("验证成功")
this.setData({
isPlzAuth: true
})
} else {
this.showLog("验证失败")
}
this.setData({
thumbX: 44,
movableViewX: 0,
})
},
bindMobileInput(e) {
this.setData({
"mobile": e.detail.value
})
},
bindNameInput(e) {
this.setData({
name: e.detail.value
})
},
bindBirthdayInput(e) {
this.setData({
birthday: e.detail.value
})
},
bindPasswordInput(e) {
this.setData({
password: e.detail.value
})
},
bindVerifyCodeInput(e) {
this.setData({
verifyCode: e.detail.value
})
},
bindBirthdayChange(e) {
this.setData({
birthday: e.detail.value
})
},
onSexRadioChange(e) {
this.setData({
sex: e.detail.value
})
},
hideMask() {
this.setData({
tipsRegisteredVisible: false,
tipsPrivacyVisible: false,
tipsCommonVisible: false,
})
},
// 子组件事件
evtcomp(evt) {
let {
name,
data
} = evt.detail;
switch (name) {
case "_evt_hide_mask":
this.hideMask();
break;
default:
break;
}
},
})