Authored by 姜枫

merge from develop

... ... @@ -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');
\ No newline at end of file
$pwd.trigger('input');
... ...
... ... @@ -21,7 +21,7 @@ var tip = require('../../plugin/tip');
var trim = $.trim;
var showErrTip = tip.show;
//登录按钮状态切换
// 登录按钮状态切换
function switchLoginBtnStatus() {
if (accPass && pwdPass) {
$loginBtn.removeClass('disable');
... ... @@ -30,22 +30,22 @@ function switchLoginBtnStatus() {
}
}
//显示找回密码面板
// 显示找回密码面板
function showRetrivePanel() {
$mask.show();
$ways.show();
}
//隐藏找回密码面板
// 隐藏找回密码面板
function hideRetrivePanel() {
$mask.hide();
$ways.hide();
}
//密码显示与隐藏
// 密码显示与隐藏
api.bindEyesEvt();
//清空账号输入框
// 清空账号输入框
api.bindClearEvt();
$account.bind('input', function() {
... ... @@ -78,7 +78,7 @@ $loginBtn.on('touchstart', function() {
$loginBtn.text('正在登录...').addClass('disable');
//验证账号(数字或者邮箱)和密码合理性
// 验证账号(数字或者邮箱)和密码合理性
if ((/^[0-9]+$/.test(acc) || api.emailRegx.test(acc)) && api.pwdValidate(pwd)) {
$.ajax({
type: 'POST',
... ... @@ -126,6 +126,6 @@ $('#cancel-retrive').on('touchstart', function(e) {
hideRetrivePanel();
});
//对初始有默认值的情况去初始化登录按钮状态
// 对初始有默认值的情况去初始化登录按钮状态
$account.trigger('input');
$pwd.trigger('input');
... ...