...
|
...
|
@@ -16,6 +16,12 @@ const LOGIN_SUCCSS = '登录成功'; |
|
|
const VERIFY_ERROR = '校验失败';
|
|
|
|
|
|
exports.beforeIn = (req, res, next) => {
|
|
|
res.set({
|
|
|
'Cache-Control': 'no-cache, no-store, must-revalidate',
|
|
|
Pragma: 'no-cache',
|
|
|
Expires: 0
|
|
|
});
|
|
|
|
|
|
if (!req.xhr && req.user.uid) {
|
|
|
return res.redirect(req.cookies.refer);
|
|
|
}
|
...
|
...
|
|