...
|
...
|
@@ -25,11 +25,16 @@ var showErrTip = tip.show; |
|
|
|
|
|
// 登录按钮状态切换
|
|
|
function switchLoginBtnStatus() {
|
|
|
if (pnPass && pwdPass && (slideUnlock && slideUnlock.isOk)) {
|
|
|
$loginBtn.removeClass('disable');
|
|
|
} else {
|
|
|
$loginBtn.addClass('disable');
|
|
|
}
|
|
|
var bool = slideUnlock ?
|
|
|
!(slideUnlock.isOk && pnPass && pwdPass) :
|
|
|
!(pnPass && pwdPass);
|
|
|
|
|
|
$loginBtn.toggleClass('disable', bool);
|
|
|
}
|
|
|
|
|
|
function resetForm() {
|
|
|
$pwd.val('').focus();
|
|
|
$loginBtn.text('登录').addClass('disable');
|
|
|
}
|
|
|
|
|
|
// Android-UC下显示select的direction:rtl无效的临时解决办法
|
...
|
...
|
@@ -113,6 +118,7 @@ $loginBtn.on('touchstart', function() { |
|
|
location.href = res.href;
|
|
|
}, 3000);
|
|
|
|
|
|
$loginBtn.text('登录成功').off();
|
|
|
showErrTip('登录成功');
|
|
|
} else {
|
|
|
if (!slideUnlock && data.slideUnlock) {
|
...
|
...
|
@@ -124,19 +130,18 @@ $loginBtn.on('touchstart', function() { |
|
|
|
|
|
|
|
|
showErrTip(data.message);
|
|
|
resetForm();
|
|
|
}
|
|
|
},
|
|
|
error: function() {
|
|
|
showErrTip('网络断开连接啦~');
|
|
|
slideUnlock && slideUnlock.reset();
|
|
|
},
|
|
|
complete: function() {
|
|
|
$loginBtn.text('登录').removeClass('disable');
|
|
|
$loginBtn.text('登录');
|
|
|
}
|
|
|
});
|
|
|
} else {
|
|
|
showErrTip('账号或密码有错误,请重新输入');
|
|
|
$loginBtn.text('登录').removeClass('disable');
|
|
|
$loginBtn.text('登录').addClass('disable');
|
|
|
}
|
|
|
});
|
|
|
|
...
|
...
|
|