|
|
@ -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')) |
|
|
|
) { |
|
|
|