index.js
6.77 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
/**
* 第三方登录绑定手机
* @author: wq
* @date: 2016/1/21
*/
var $ = require('yoho-jquery');
var Captcha = require('../../plugins/captcha');
var phoneRegx = require('../common/mail-phone-regx').phoneRegx;
var nopermissionoption = $('#nopermissionmessage').html(); // 倒计时dom
var sendmessagehtml = $('.validatewrapper').html(); // 发送短信dom
var second = +$('.second').text(); // 倒计时秒数
var $wrapper = $('.bindwrapper'),
$phoneTip = $wrapper.find('.phone-err-tip'),
$nextBtn = $wrapper.find('.yohobindbtn');
var thirdOpenId = $('#openId').val(),
thirdSourceType = $('#sourceType').val();
var Alert = require('../../common/dialog').Alert;
var dialog = require('../cert/dialog');
var passwordCaptchaImg = new Captcha('.captcha-wrap', {checkURI: ''}).init();
passwordCaptchaImg.onSuccess(function() {
$('#sendmessage').trigger('click');
});
require('../../simple-header');
/**
* 选择区域的开关
* @return {[type]} [description]
*/
function chooseAreaToogle() {
$('.optionshow').on('click', function() {
$('.optionslist').toggleClass('hide');
});
}
/**
* 选择区域
* @return {[type]} [description]
*/
function chooseArea() {
$('.optionitem').on('click', function() {
var $option = $(this);
var areanum = $option.attr('areanum');
var areaname = $option.text();
$('#areaname').text(areaname);
$('#areanum').text(areanum);
$('#areacode').val(areanum);
$('.optionslist').addClass('hide');
});
}
/**
* 取消选择区域
* @return {[type]} [description]
*/
function cancelChooseArea() {
$(document).on('click', 'body', function(e) {
var $target = $(e.target);
if ($target.hasClass('yohoselectarea') ||
$target.hasClass('areaname') ||
$target.hasClass('righttag') ||
$target.hasClass('optionslist') ||
$target.hasClass('optionitem')) {
return;
} else {
$('.optionslist').addClass('hide');
}
});
}
/**
* 去掉区域号的加号
* @return {[type]} [description]
*/
function fixAreaNum() {
var $opitem = '';
var itemarecode = '';
$('.optionitem').each(function() {
$opitem = $(this);
itemarecode = $opitem.attr('areanum').replace(/\+/g, '');
$opitem.attr('areanum', itemarecode);
});
}
/**
* 发送短信的时间变换动画
* @return {[type]} [description]
*/
function changeSecond() {
second -= 1;
if (second < 0) {
second = 60;
$('.validatewrapper').html(sendmessagehtml);
return;
} else {
$('.second').text(second);
window.setTimeout(changeSecond, 1000);
}
}
/**
* 时间循环
* @param {[type]} phonenum [description]
* @return {[type]} [description]
*/
function circleTime() {
$('.validatewrapper').html(nopermissionoption);
window.setTimeout(changeSecond, 1000);
}
/**
* 发送短信
* @return {[type]} [description]
*/
function sendMessageValidate() {
$(document).on('click', '#sendmessage', function() {
if ($('#sendmessage').attr('disabled') === 'disabled') {
return;
}
$.ajax({
type: 'POST',
url: '/passport/autouserinfo/sendBindMsg',
data: {
mobile: $('#mobile').val(),
area: $('#areacode').val(),
verifyCode: passwordCaptchaImg.getResults(),
}
}).then(function(data) {
if (data.code !== 200) {
alert(data.message); // eslint-disable-line
} else {
circleTime($('#mobile').val());
}
});
});
}
/**
* 最终提交表单
*/
function actionSubmit() {
$.ajax({
type: 'POST',
url: '/passport/autouserinfo/bindMobile',
data: {
area: $('#areacode').val(),
openId: thirdOpenId,
sourceType: thirdSourceType,
nickName: $('#nickName').val(),
mobile: $('#mobile').val(),
code: $('#smscode').val()
}
}).then(function(data) {
if (data.code === 200) {
if (data.data && data.data.refer) {
window.location.href = data.data.refer;
} else {
window.location.href = '/passport/thirdlogin/bindsuccess';
}
} else {
alert(data.message); // eslint-disable-line
}
});
}
function goLogin(account) {
account ? window.jumpUrl(`/signin.html?account=${account}`) : window.jumpUrl('/signin.html');
}
/**
* 点击下一步
* @return {[type]} [description]
*/
function nextStep() {
var mobile = '';
var areaCode = '';
var smsCode = '';
$('#bindfirststep').on('click', function(e) {
var regx;
e.preventDefault();
mobile = $('.phonenum').val();
areaCode = $('#areanum').text();
regx = phoneRegx['+' + areaCode];
if (mobile === '' || !regx || !regx.test(mobile)) {
$phoneTip.find('em').text('手机格式错误');
$phoneTip.removeClass('hide');
return;
}
smsCode = $('#smscode').val();
if (!smsCode) {
return;
}
$.ajax({
type: 'post',
url: '/passport/cert/check',
data: {
mobile: mobile,
area: areaCode,
code: smsCode,
openId: thirdOpenId,
sourceType: thirdSourceType
},
dataType: 'json',
success: function(data) {
var isBind;
var isRegister;
if (data.code === 200) {
isBind = data.data && data.data.isBind;
isRegister = data.data && data.data.isRegister;
if (isRegister === 'Y') {
if (isBind === 'N') {
dialog.showBind(() => goLogin(mobile), actionSubmit);
} else {
dialog.showBind2(() => goLogin(mobile), actionSubmit);
}
} else {
actionSubmit();
}
} else {
if (data && data.message) {
new Alert(data.message).show();
}
}
}
});
});
}
$wrapper.on('keydown', '.phonenum', function(e) {
if (e.keyCode === 13) {
$nextBtn.trigger('click');
return false;
}
});
function init() {
fixAreaNum(); // 去掉所有区域的+
sendMessageValidate(); // 有交互的发送短信
chooseArea(); // 选择区域
chooseAreaToogle(); // 选择区域展示或关闭
cancelChooseArea(); // 取消选择区域
nextStep(); // 下一步
}
init();