Browse Source

登录提示

release_0.0.2
巴林闲侠 2 years ago
parent
commit
5fffd15729
  1. 4
      api/app/lib/controllers/auth/index.js

4
api/app/lib/controllers/auth/index.js

@ -15,7 +15,7 @@ async function login (ctx, next) {
})
if (!emisLoginRes) {
throw "账号或密码错误"
throw "无此用户,请使用正确的登录信息"
} else {
const pomsRegisterRes = await models.User.findOne({
where: {
@ -27,7 +27,7 @@ async function login (ctx, next) {
}
})
if (!pomsRegisterRes) {
throw '当前账号尚未在此系统启用'
throw '你还不是飞尚运维中台成员,请联系管理员添加权限'
} else if (
pomsRegisterRes.disable && (!pomsRegisterRes.role || !pomsRegisterRes.role.includes('admin'))
) {

Loading…
Cancel
Save