...
|
...
|
@@ -111,7 +111,9 @@ const local = { |
|
|
res.render('login', {
|
|
|
width750: true,
|
|
|
loginIndex: true, // 模板中使用JS的标识
|
|
|
captchaShow: _.get(req.session, 'login.errorCount') <= 0,
|
|
|
|
|
|
// captchaShow: _.get(req.session, 'login.errorCount') <= 0,
|
|
|
captchaShow: true, // 170306 因为暴力破解密码问题,要求每次都展示验证码
|
|
|
|
|
|
// 返回的URL链接
|
|
|
backUrl: 'javascript:history.go(-1)', // eslint-disable-line
|
...
|
...
|
@@ -162,7 +164,9 @@ const local = { |
|
|
// 返回的URL链接
|
|
|
backUrl: 'javascript:history.go(-1)', // eslint-disable-line
|
|
|
loginInternational: true, // 模板中使用JS的标识
|
|
|
captchaShow: _.get(req.session, 'login.errorCount') <= 0,
|
|
|
|
|
|
// captchaShow: _.get(req.session, 'login.errorCount') <= 0,
|
|
|
captchaShow: true, // 170306 因为暴力破解密码问题,要求每次都展示验证码
|
|
|
isPassportPage: true, // 模板中模块标识
|
|
|
headerText: '登录',
|
|
|
areaCode: '+86', // 默认区号
|
...
|
...
|
@@ -173,6 +177,10 @@ const local = { |
|
|
});
|
|
|
},
|
|
|
login: (req, res, next) => {
|
|
|
|
|
|
// 170306 因为暴力破解密码问题,要求每次都校验验证码
|
|
|
_.set(req.session, 'login.errorCount', 0);
|
|
|
|
|
|
let count = _.get(req.session, 'login.errorCount');
|
|
|
|
|
|
if (count == null) { // eslint-disable-line
|
...
|
...
|
|