...
|
...
|
@@ -20,7 +20,7 @@ var tip = require('../../plugin/tip'); |
|
|
var trim = $.trim;
|
|
|
var showErrTip = tip.show;
|
|
|
|
|
|
//登录按钮状态切换
|
|
|
// 登录按钮状态切换
|
|
|
function switchLoginBtnStatus() {
|
|
|
if (pnPass && pwdPass) {
|
|
|
$loginBtn.removeClass('disable');
|
...
|
...
|
@@ -29,13 +29,13 @@ function switchLoginBtnStatus() { |
|
|
}
|
|
|
}
|
|
|
|
|
|
//Android-UC下显示select的direction:rtl无效的临时解决办法
|
|
|
// Android-UC下显示select的direction:rtl无效的临时解决办法
|
|
|
api.selectCssHack($countrySelect);
|
|
|
|
|
|
//显示隐藏密码
|
|
|
// 显示隐藏密码
|
|
|
api.bindEyesEvt();
|
|
|
|
|
|
//清空手机号码
|
|
|
// 清空手机号码
|
|
|
api.bindClearEvt();
|
|
|
|
|
|
$phoneNum.bind('input', function() {
|
...
|
...
|
@@ -98,14 +98,14 @@ $loginBtn.on('touchstart', function() { |
|
|
success: function() {
|
|
|
clearTimeout(time);
|
|
|
|
|
|
//Cookie写入成功后,1s后跳转页面
|
|
|
// Cookie写入成功后,1s后跳转页面
|
|
|
setTimeout(function() {
|
|
|
location.href = res.href;
|
|
|
}, 1000);
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//3秒后强制跳转
|
|
|
// 3秒后强制跳转
|
|
|
time = setTimeout(function() {
|
|
|
location.href = res.href;
|
|
|
}, 3000);
|
...
|
...
|
@@ -128,6 +128,6 @@ $loginBtn.on('touchstart', function() { |
|
|
}
|
|
|
});
|
|
|
|
|
|
//对初始有默认值的情况去初始化登录按钮状态
|
|
|
// 对初始有默认值的情况去初始化登录按钮状态
|
|
|
$phoneNum.trigger('input');
|
|
|
$pwd.trigger('input'); |
...
|
...
|
|