mobile-new.js
7.51 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
import $ from 'yoho-jquery';
import tip from 'js/plugin/tip';
import Page from 'js/yoho-page';
import api from '../api';
import Validate from 'js/plugin/validata';
import validatePWD from '../password-check';
const $captcha = $('#js-img-check');
const validate = new Validate($captcha, {
useREM: {
rootFontSize: 40,
picWidth: 150
}
});
const showErrTip = tip.show;
class MobileNew extends Page {
constructor() {
super();
this.selector = {
countryCodeSelector: $('#countryCodeSelector'),
mobileInput: $('input[name=mobile]'),
clearMobile: $('#clearMobile'),
verifyCodeInput: $('input[name=verifyCode]'),
getVerifyCodeBtn: $('#getVerifyCodeBtn'),
passwordInput: $('input[name=password]'),
passwordEyeIcon: $('#passwordEyeIcon'),
eyeClose: $('.eye-close'),
eyeOpen: $('.eye-open'),
backMobileResetBtn: $('#backMobileResetBtn')
};
this.init();
}
init() {
if ($captcha.data('userverify')) {
validate.init();
}
this.selector.getVerifyCodeBtn.data('oneClick', false);
this.bindEvents();
}
bindEvents() {
this.selector.mobileInput.on('input', this.changeBtnStatus.bind(this, 'mobile'));
this.selector.clearMobile.on('click', this.clearMobile.bind(this));
this.selector.verifyCodeInput.on('input', this.changeBtnStatus.bind(this));
this.selector.passwordInput.on('input', this.changeBtnStatus.bind(this));
this.selector.passwordEyeIcon.on('click', this.passwordShowStatus.bind(this));
this.selector.getVerifyCodeBtn.on('click', this.getVerifyCode.bind(this));
this.selector.backMobileResetBtn.on('click', this.resetPassword.bind(this));
}
/**
* 隐藏显示密码
*/
passwordShowStatus() {
if (this.selector.eyeOpen.hasClass('hide')) {
this.selector.passwordInput.attr('type', 'text');
this.selector.eyeClose.addClass('hide');
this.selector.eyeOpen.removeClass('hide');
} else {
this.selector.passwordInput.attr('type', 'password');
this.selector.eyeOpen.addClass('hide');
this.selector.eyeClose.removeClass('hide');
}
}
/**
* 清除输入的手机号
*/
clearMobile() {
this.selector.mobileInput.val('');
this.selector.clearMobile.addClass('hide');
this.selector.getVerifyCodeBtn.removeClass('active');
}
/**
* 输入监听,改变按钮状态
* which
*/
changeBtnStatus(which) {
// 获取验证码按钮
if (which === 'mobile') {
if (this.selector.mobileInput.val()) {
this.selector.getVerifyCodeBtn.addClass('active');
this.selector.clearMobile.removeClass('hide');
} else {
this.selector.getVerifyCodeBtn.removeClass('active');
this.selector.clearMobile.addClass('hide');
}
}
// 登录按钮
if (this.selector.mobileInput.val() &&
this.selector.getVerifyCodeBtn.data('oneClick') &&
this.selector.verifyCodeInput.val() &&
this.selector.passwordInput.val()) {
let valiResult = validatePWD(this.selector.passwordInput.val());
if (valiResult) {
this.selector.backMobileResetBtn.addClass('active');
} else {
this.selector.backMobileResetBtn.removeClass('active');
}
} else {
this.selector.backMobileResetBtn.removeClass('active');
}
}
/**
* 获取验证码倒计时
*/
countDown(during) {
let count = during || 59;
let itime;
this.selector.getVerifyCodeBtn.removeClass('active');
this.selector.mobileInput.attr('disabled', 'disabled');
this.selector.clearMobile.addClass('hide');
itime = setInterval(() => {
if (count === 0) {
this.selector.getVerifyCodeBtn.text('重新获取').addClass('active');
this.selector.mobileInput.removeAttr('disabled');
this.selector.clearMobile.removeClass('hide');
clearInterval(itime);
} else {
this.selector.getVerifyCodeBtn.text('重新获取 (' + count-- + '秒)');
window.setCookie('count', count);
if (during && parseInt(during, 10) !== 0) {
this.selector.getVerifyCodeBtn.removeClass('active');
this.selector.mobileInput.attr('disabled', 'disabled');
this.selector.clearMobile.addClass('hide');
}
}
}, 1000);
}
/**
* 获取验证码
*/
getVerifyCode() {
let pn = $.trim(this.selector.mobileInput.val());
let area = $.trim(this.selector.countryCodeSelector.val());
if (!this.selector.getVerifyCodeBtn.hasClass('active')) {
return;
}
this.selector.getVerifyCodeBtn.data('oneClick', true);
if (area && pn && api.phoneRegx[area].test(pn)) {
validate.getResults().then(result => {
let params = {
areaCode: area.replace('+', ''),
phoneNum: pn
};
$.extend(params, result);
this.ajax({
url: '/passport/back/sendcode',
type: 'POST',
data: params
}).then(codeResult => {
validate.type === 2 && validate.refresh();
if (codeResult.code === 200) {
this.countDown();
return;
} else if (codeResult.code === 409) {
showErrTip(codeResult.message);
} else {
showErrTip(codeResult.message);
}
(codeResult.changeCaptcha && validate.type !== 2) && validate.refresh();
}).catch(() => {
showErrTip('出错了,请重试');
validate.refresh();
});
});
} else if (!area) {
showErrTip('出错了,请重新刷新页面');
} else {
showErrTip('手机号格式不正确,请重新输入');
}
}
/**
* 重置密码
*/
resetPassword() {
if (!this.selector.backMobileResetBtn.hasClass('active')) {
return;
}
let pwd = $.trim(this.selector.passwordInput.val());
let postData = {
phoneNum: this.selector.mobileInput.val(),
password: pwd,
code: this.selector.verifyCodeInput.val(),
areaCode: this.selector.countryCodeSelector.val().replace('+', '')
};
if (validatePWD(pwd)) {
this.ajax({
type: 'POST',
url: '/passport/back/passwordByMobile-new',
data: postData
}).then(result => {
if (result.code === 200) {
showErrTip('密码修改成功');
// 1000ms后跳转页面
setTimeout(() => {
location.href = result.data;
}, 1000);
} else {
showErrTip(result.message);
}
});
} else {
showErrTip('密码6-20位,请重新输入');
}
}
}
module.exports = MobileNew;