Showing
2 changed files
with
15 additions
and
15 deletions
@@ -20,7 +20,7 @@ var tip = require('../../plugin/tip'); | @@ -20,7 +20,7 @@ var tip = require('../../plugin/tip'); | ||
20 | var trim = $.trim; | 20 | var trim = $.trim; |
21 | var showErrTip = tip.show; | 21 | var showErrTip = tip.show; |
22 | 22 | ||
23 | -//登录按钮状态切换 | 23 | +// 登录按钮状态切换 |
24 | function switchLoginBtnStatus() { | 24 | function switchLoginBtnStatus() { |
25 | if (pnPass && pwdPass) { | 25 | if (pnPass && pwdPass) { |
26 | $loginBtn.removeClass('disable'); | 26 | $loginBtn.removeClass('disable'); |
@@ -29,13 +29,13 @@ function switchLoginBtnStatus() { | @@ -29,13 +29,13 @@ function switchLoginBtnStatus() { | ||
29 | } | 29 | } |
30 | } | 30 | } |
31 | 31 | ||
32 | -//Android-UC下显示select的direction:rtl无效的临时解决办法 | 32 | +// Android-UC下显示select的direction:rtl无效的临时解决办法 |
33 | api.selectCssHack($countrySelect); | 33 | api.selectCssHack($countrySelect); |
34 | 34 | ||
35 | -//显示隐藏密码 | 35 | +// 显示隐藏密码 |
36 | api.bindEyesEvt(); | 36 | api.bindEyesEvt(); |
37 | 37 | ||
38 | -//清空手机号码 | 38 | +// 清空手机号码 |
39 | api.bindClearEvt(); | 39 | api.bindClearEvt(); |
40 | 40 | ||
41 | $phoneNum.bind('input', function() { | 41 | $phoneNum.bind('input', function() { |
@@ -98,14 +98,14 @@ $loginBtn.on('touchstart', function() { | @@ -98,14 +98,14 @@ $loginBtn.on('touchstart', function() { | ||
98 | success: function() { | 98 | success: function() { |
99 | clearTimeout(time); | 99 | clearTimeout(time); |
100 | 100 | ||
101 | - //Cookie写入成功后,1s后跳转页面 | 101 | + // Cookie写入成功后,1s后跳转页面 |
102 | setTimeout(function() { | 102 | setTimeout(function() { |
103 | location.href = res.href; | 103 | location.href = res.href; |
104 | }, 1000); | 104 | }, 1000); |
105 | } | 105 | } |
106 | }); | 106 | }); |
107 | 107 | ||
108 | - //3秒后强制跳转 | 108 | + // 3秒后强制跳转 |
109 | time = setTimeout(function() { | 109 | time = setTimeout(function() { |
110 | location.href = res.href; | 110 | location.href = res.href; |
111 | }, 3000); | 111 | }, 3000); |
@@ -128,6 +128,6 @@ $loginBtn.on('touchstart', function() { | @@ -128,6 +128,6 @@ $loginBtn.on('touchstart', function() { | ||
128 | } | 128 | } |
129 | }); | 129 | }); |
130 | 130 | ||
131 | -//对初始有默认值的情况去初始化登录按钮状态 | 131 | +// 对初始有默认值的情况去初始化登录按钮状态 |
132 | $phoneNum.trigger('input'); | 132 | $phoneNum.trigger('input'); |
133 | -$pwd.trigger('input'); | ||
133 | +$pwd.trigger('input'); |
@@ -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'); |
-
Please register or login to post a comment