Authored by 毕凯

修改绑定手机号 绑定中文字

... ... @@ -28,6 +28,7 @@ function nextStep(url, mobileNo, areaCode) {
}
requested = true;
$btnNext.html('绑定中');
$.ajax({
type: 'POST',
... ... @@ -37,11 +38,13 @@ function nextStep(url, mobileNo, areaCode) {
areaCode: areaCode.replace('+', '')
},
success: function(res) {
console.log(res.data);
// console.log(res.data);
location.href = url;
},
error: function() {
tip.show('出错了,请重试!');
$btnNext.html('下一步');
requested = false;
}
});
... ... @@ -86,7 +89,8 @@ $btnNext.on('touchstart', function() {
nickname: nickname
},
success: function(res) {
console.log(res);
// console.log(res);
//res : {
// code: 'xxx',
... ...