...
|
...
|
@@ -21,32 +21,32 @@ var nickname = $('#nickname').val(), |
|
|
areaCode = $('#area-code').val().replace('+', '');
|
|
|
|
|
|
function startBind(password) {
|
|
|
$.ajax({
|
|
|
url: '/passport/bind/bindMobile',
|
|
|
type: 'post',
|
|
|
data: {
|
|
|
areaCode: areaCode.replace('+', ''),
|
|
|
phoneNum: phoneNum,
|
|
|
openId: openId,
|
|
|
sourceType: sourceType,
|
|
|
nickname: nickname,
|
|
|
password: password
|
|
|
},
|
|
|
success: function(res) {
|
|
|
if (res.code === 200) {
|
|
|
tip.show('登录成功');
|
|
|
setTimeout(function() {
|
|
|
location.href = res.data.refer;
|
|
|
}, 2000);
|
|
|
} else {
|
|
|
tip.show(res.message);
|
|
|
}
|
|
|
},
|
|
|
error: function(err) {
|
|
|
tip.show('登录失败,请重试!');
|
|
|
$.ajax({
|
|
|
url: '/passport/bind/bindMobile',
|
|
|
type: 'post',
|
|
|
data: {
|
|
|
areaCode: areaCode.replace('+', ''),
|
|
|
phoneNum: phoneNum,
|
|
|
openId: openId,
|
|
|
sourceType: sourceType,
|
|
|
nickname: nickname,
|
|
|
password: password
|
|
|
},
|
|
|
success: function(res) {
|
|
|
if (res.code === 200) {
|
|
|
tip.show('登录成功');
|
|
|
setTimeout(function() {
|
|
|
location.href = res.data.refer;
|
|
|
}, 2000);
|
|
|
} else {
|
|
|
tip.show(res.message);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
},
|
|
|
error: function(err) {
|
|
|
tip.show('登录失败,请重试!');
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
api.bindEyesEvt({
|
|
|
status: 'open' //默认眼睛打开
|
...
|
...
|
|