sms-check.page.js
4.19 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
'use strict';
let tip, checkPoint;
let $resendBtn,
$nextBtn,
$smsCode,
$resetBtn,
mobile, area;
let page;
require('js/common');
tip = require('js/plugin/tip');
checkPoint = require('./smslogin/check-point');
page = {
disableAjax: false,
time: 60,
resendText: '重发验证码',
timerId: null,
init: function() {
this.domInit();
this.bindEvents();
if (window.countdown > 0) {
this.countDown(window.countdown);
}
},
domInit: function() {
$resendBtn = $('#resend-sms');
$nextBtn = $('#btn-next');
$resetBtn = $('.clear-input');
$smsCode = $('#sms-code');
mobile = $('#mobile').val();
area = $('#area').val();
},
bindEvents: function() {
let self = this;
$resendBtn.on('click', function() {
self.resendSMS();
});
$smsCode.on('input', function() {
let hasVal = Boolean($.trim(this.value));
$nextBtn.trigger('toggleDisable', !hasVal);
$resetBtn.toggle(hasVal);
});
$nextBtn.on('click', function() {
self.submit();
});
$resetBtn.on('click', function() {
$smsCode.val('');
$resetBtn.hide();
$nextBtn.trigger('toggleDisable');
});
$nextBtn.on('toggleDisable', function(event, bool) {
if (bool === void 0) {
bool = true;
}
$nextBtn.toggleClass('disable', bool);
$nextBtn.prop('disabled', bool);
});
},
countDown: function(during) {
let self = this;
let second = this.time;
if (during) {
clearInterval(this.timerId);
second = during;
} else if (this.timerId) {
return;
}
$resendBtn.prop('disabled', true);
$resendBtn.text('重新获取(' + second + ')');
this.timerId = setInterval(function() {
let txt = self.resendText;
second = second - 1;
if (second < 0) {
clearInterval(self.timerId);
self.timerId = null;
$resendBtn.prop('disabled', false);
} else {
txt = '重新获取(' + second + '秒)';
}
$resendBtn.text(txt);
}, 1000);
},
resendSMS: function() {
let self = this;
if ($resendBtn.prop('disabled')) {
return;
}
$.get('/passport/sms_login/token.json', {
area: area,
mobile: mobile
})
.done(function(res) {
if (res.code === 200) {
self.countDown();
return;
} else {
res.during && (self.countDown(res.during));
}
tip.show(res.message);
})
.fail(function() {
tip.show('出错啦~休息一下');
});
},
submit: function() {
let code = $.trim($smsCode.val());
if ($nextBtn.prop('disabled')) {
return;
}
$nextBtn.prop('disabled', true);
$.get('/passport/sms_login/check.json', {
code: code
})
.done(function(res) {
if (res.code === 200) {
checkPoint('YB_MOBILE_LOGIN_C'); // 埋点
if (res.newer) {
res.redirect = res.redirect + '®isterCode=' + res.registerCode;
// 暂时跳注册 TODO
// tip.show('请先注册!');
// setTimeout(function(){
// location.href = '//m.yohobuy.com/reg.html';
// }, 2000);
// return;
}
location.href = res.redirect;
return;
}
tip.show(res.message);
})
.fail(function() {
tip.show('出错了, 请重试');
})
.always(function() {
$nextBtn.prop('disabled', false);
});
}
};
$(function() {
page.init();
});