|
@@ -21,7 +21,7 @@ var tip = require('../../plugin/tip'); |
|
@@ -21,7 +21,7 @@ var tip = require('../../plugin/tip'); |
21
|
var trim = $.trim;
|
21
|
var trim = $.trim;
|
22
|
var showErrTip = tip.show;
|
22
|
var showErrTip = tip.show;
|
23
|
|
23
|
|
24
|
-//登录按钮状态切换
|
24
|
+// 登录按钮状态切换
|
25
|
function switchLoginBtnStatus() {
|
25
|
function switchLoginBtnStatus() {
|
26
|
if (accPass && pwdPass) {
|
26
|
if (accPass && pwdPass) {
|
27
|
$loginBtn.removeClass('disable');
|
27
|
$loginBtn.removeClass('disable');
|
|
@@ -30,22 +30,22 @@ function switchLoginBtnStatus() { |
|
@@ -30,22 +30,22 @@ function switchLoginBtnStatus() { |
30
|
}
|
30
|
}
|
31
|
}
|
31
|
}
|
32
|
|
32
|
|
33
|
-//显示找回密码面板
|
33
|
+// 显示找回密码面板
|
34
|
function showRetrivePanel() {
|
34
|
function showRetrivePanel() {
|
35
|
$mask.show();
|
35
|
$mask.show();
|
36
|
$ways.show();
|
36
|
$ways.show();
|
37
|
}
|
37
|
}
|
38
|
|
38
|
|
39
|
-//隐藏找回密码面板
|
39
|
+// 隐藏找回密码面板
|
40
|
function hideRetrivePanel() {
|
40
|
function hideRetrivePanel() {
|
41
|
$mask.hide();
|
41
|
$mask.hide();
|
42
|
$ways.hide();
|
42
|
$ways.hide();
|
43
|
}
|
43
|
}
|
44
|
|
44
|
|
45
|
-//密码显示与隐藏
|
45
|
+// 密码显示与隐藏
|
46
|
api.bindEyesEvt();
|
46
|
api.bindEyesEvt();
|
47
|
|
47
|
|
48
|
-//清空账号输入框
|
48
|
+// 清空账号输入框
|
49
|
api.bindClearEvt();
|
49
|
api.bindClearEvt();
|
50
|
|
50
|
|
51
|
$account.bind('input', function() {
|
51
|
$account.bind('input', function() {
|
|
@@ -78,7 +78,7 @@ $loginBtn.on('touchstart', function() { |
|
@@ -78,7 +78,7 @@ $loginBtn.on('touchstart', function() { |
78
|
|
78
|
|
79
|
$loginBtn.text('正在登录...').addClass('disable');
|
79
|
$loginBtn.text('正在登录...').addClass('disable');
|
80
|
|
80
|
|
81
|
- //验证账号(数字或者邮箱)和密码合理性
|
81
|
+ // 验证账号(数字或者邮箱)和密码合理性
|
82
|
if ((/^[0-9]+$/.test(acc) || api.emailRegx.test(acc)) && api.pwdValidate(pwd)) {
|
82
|
if ((/^[0-9]+$/.test(acc) || api.emailRegx.test(acc)) && api.pwdValidate(pwd)) {
|
83
|
$.ajax({
|
83
|
$.ajax({
|
84
|
type: 'POST',
|
84
|
type: 'POST',
|
|
@@ -126,6 +126,6 @@ $('#cancel-retrive').on('touchstart', function(e) { |
|
@@ -126,6 +126,6 @@ $('#cancel-retrive').on('touchstart', function(e) { |
126
|
hideRetrivePanel();
|
126
|
hideRetrivePanel();
|
127
|
});
|
127
|
});
|
128
|
|
128
|
|
129
|
-//对初始有默认值的情况去初始化登录按钮状态
|
129
|
+// 对初始有默认值的情况去初始化登录按钮状态
|
130
|
$account.trigger('input');
|
130
|
$account.trigger('input');
|
131
|
$pwd.trigger('input'); |
131
|
$pwd.trigger('input'); |