back.js
8.03 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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
/**
* 找回密码
* @author: TaoHuang
* @date: 2016/7/18
*/
var $ = require('yoho-jquery'),
regx = require('../common/mail-phone-regx'),
EventProxy = require('yoho-eventproxy');
var emailAc = require('../common/ac-email'); // 邮箱自动完成
var $regionCodeText = $('#country-code'),
$phoneNumInput = $('.phone-num'),
$imgCaptchaInput = $('#verifyCode'),
$regionSelectHeader = $('#country-select-header'),
$regionSelectList = $('#country-select-list'),
$nextBtn = $('#find-btn'),
$form = $('#back-form');
var emailRegx = regx.emailRegx,
phoneRegx = regx.phoneRegx;
var ep = new EventProxy();
var upDown = {
up: '',
down: ''
};
var selectedIcon = '';
function errTip(ele, msg) {
var $errTip = ele.next('.tips');
var $errMsg = $errTip.find('.content');
$errMsg.text(msg);
return $errTip.removeClass('hide');
}
function hideTip(ele) {
return ele.next('.tips').addClass('hide');
}
require('yoho-jquery-placeholder');
/**
* 刷新图形验证码
*/
function refreshImgCaptcha() {
var time = new Date(),
$captchaImg = $('#captcha-img'),
captchaImgSrc = $captchaImg.attr('src').split('?')[0];
$('#captcha-img').attr('src', captchaImgSrc + '?t=' + time.getTime());
}
/**
* 异步验证手机是否有人注册
*/
function validatePhoneNumAsync() {
return $.ajax({
type: 'POST',
url: '/passport/back/authcode',
data: {
phoneNum: $.trim($phoneNumInput.val()),
area: $regionCodeText.text()
}
}).then(function(data) {
if (data.code === 200) {
return true;
} else if (data.code === 402) {
errTip($phoneNumInput, '该账号不存在');
return false;
} else if (data.code === 400) {
refreshImgCaptcha();
return false;
}
});
}
/**
* 提交结果
*/
function nextStep(url) {
$form.attr('action', url);
$form.submit();
}
/**
* 本地验证手机号
* 注意:国际号码不做验证
*/
function validatePhoneNumLocal() {
var val = $.trim($phoneNumInput.val());
if (val !== '') {
if (/^[0-9]+$/.test(val)) {
// 这里只做中国区验证
if ($regionCodeText.text() === '+86') {
if (val.length === 11 && phoneRegx['+86'].test(val)) {
return true;
} else {
errTip($phoneNumInput, '手机号码不正确,请重新输入');
return false;
}
}
return true;
} else {
if (emailRegx.test(val)) {
return true;
} else {
errTip($phoneNumInput, '邮箱格式不正确,请重新输入');
return false;
}
}
} else {
errTip($phoneNumInput, '请输入帐号');
return false;
}
}
/**
* 整合本地和异步验证
*/
function validatePhoneNum() {
function validate() {
var defer = $.Deferred(); //eslint-disable-line
if (validatePhoneNumLocal()) {
validatePhoneNumAsync().then(function(result) {
if (result) {
defer.resolve(true);
} else {
errTip($phoneNumInput, '帐号不存在');
defer.reject(false);
}
});
} else {
defer.reject(false);
}
return defer.promise();
}
return validate().then(function() {
hideTip($phoneNumInput);
ep.emit('phone-num', true);
}).fail(function() {
ep.emit('phone-num', false);
});
}
/**
* 本地图形验证码验证
*/
function validateImgCaptchaLocal() {
var v = $.trim($imgCaptchaInput.val());
if (v === '') {
errTip($imgCaptchaInput, '请输入图形验证码');
return false;
} else if (v.length !== 4) {
errTip($imgCaptchaInput, '验证码不正确');
return false;
}
return true;
}
/**
* 异步验证图形验证码
*/
function validateImgCaptchaAsync() {
return $.ajax({
type: 'POST',
url: '/passport/images/check',
data: {
verifyCode: $.trim($imgCaptchaInput.val())
}
}).then(function(result) {
if (result.code === 200) {
return true;
} else {
errTip($imgCaptchaInput, '验证码不正确');
return false;
}
});
}
/**
* 整合本地和异步验证过程
*/
function validateImgCaptcha() {
function validate() {
var defer = $.Deferred(); //eslint-disable-line
if (validateImgCaptchaLocal()) {
validateImgCaptchaAsync().then(function(result) {
if (result) {
defer.resolve(true);
} else {
errTip($imgCaptchaInput, '验证码不正确');
defer.reject(false);
}
});
} else {
defer.reject(false);
}
return defer.promise();
}
return validate().then(function() {
ep.emit('captcha-img', true);
}).fail(function() {
ep.emit('captcha-img', false);
});
}
/**
* 邮箱自动补全
*/
emailAc($phoneNumInput, function() {
validatePhoneNum();
});
$imgCaptchaInput.attr('maxlength', 4);
// IE8 placeholder
$('input').placeholder();
exports.init = function() {
// 监听事件 phone-num 和 captcha-img
ep.tail('phone-num', 'captcha-img', function(phoneAuth, imgAuth) {
if (phoneAuth && imgAuth) {
$nextBtn.removeClass('disable');
} else {
$nextBtn.addClass('disable');
}
});
// 监听事件 phone-num
ep.on('phone-num', function(auth) {
if (auth) {
hideTip($phoneNumInput);
}
});
// 监听事件 captcha-img
ep.on('captcha-img', function(auth) {
if (auth) {
hideTip($imgCaptchaInput);
} else {
refreshImgCaptcha();
}
});
$imgCaptchaInput.on('blur', function() {
validateImgCaptcha();
$imgCaptchaInput.removeClass('focus');
}).on('focus', function() {
hideTip($imgCaptchaInput);
$imgCaptchaInput.addClass('focus');
});
$phoneNumInput.on('focus', function() {
hideTip($phoneNumInput);
$('.phone').addClass('focus');
}).on('blur', function() {
$phoneNumInput.removeClass('focus');
$('.phone').removeClass('focus');
});
$nextBtn.on('click', function() {
var urlPhone = '/passport/back/mobile',
urlEmail = '/passport/back/email';
var url = null;
if ($(this).hasClass('disable')) {
return;
}
if (/^[0-9]+$/.test($.trim($phoneNumInput.val()))) {
url = urlPhone;
} else {
url = urlEmail;
}
$nextBtn.addClass('disable');
nextStep(url);
});
$('.change-captcha, #captcha-img').on('click', function() {
refreshImgCaptcha();
});
// 变换图标
function changeHeader() {
var $indicator = $regionSelectHeader.find('.iconfont');
if ($regionSelectList.hasClass('hide')) {
$indicator.html(upDown.up);
} else {
$indicator.html(upDown.down);
}
}
// 选择国家列表
$regionSelectList.on('click', '.option', function() {
var $clickItem = $(this);
var areaCode = $clickItem.data('code');
var name = $clickItem.data('value');
var $selectedItem = $clickItem.siblings('.selected');
$selectedItem.find('.iconfont').html('').end().removeClass('selected');
$clickItem.find('.iconfont').html(selectedIcon).end().addClass('selected');
$regionSelectHeader.find('.name').html(name);
$regionCodeText.text(areaCode);
$regionSelectList.addClass('hide');
changeHeader();
});
// 选择国家头
$regionSelectHeader.on('click', function() {
$regionSelectList.toggleClass('hide');
changeHeader();
});
};