...
|
...
|
@@ -381,8 +381,21 @@ function nextStep() { |
|
|
circleTime($('#mobile').val());
|
|
|
} else if (data.code === 203) {
|
|
|
// 已注册 可关联
|
|
|
$('#bindmobileform').attr('action', data.data.next);
|
|
|
$('#bindmobileform').submit();
|
|
|
|
|
|
$('#registphone-relate').text(mobile);
|
|
|
$('#username-relate').text(username);
|
|
|
if (headImg === '') {
|
|
|
$('#userphoto-relate').attr('src', 'http://img10.static.yhbimg.com/headimg/2013/11/28/09/' +
|
|
|
'01cae078abe5fe320c88cdf4c220212688.gif?imageView/2/w/100/h/100');
|
|
|
} else {
|
|
|
$('#userphoto-relate').attr('src', headImg);
|
|
|
}
|
|
|
|
|
|
$('#norelate .mask').css({
|
|
|
'padding-top': winHeight > 440 ? winHeight / 2 : 217
|
|
|
});
|
|
|
$('#norelate').show();
|
|
|
|
|
|
} else if (data.code === 205) {
|
|
|
// 未注册 不可关联
|
|
|
username = data.data.user.username;
|
...
|
...
|
|