|
@ -45,7 +45,9 @@ async function login (ctx, next) { |
|
|
ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); |
|
|
ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); |
|
|
ctx.status = 400; |
|
|
ctx.status = 400; |
|
|
let message = typeof error == 'string' ? error |
|
|
let message = typeof error == 'string' ? error |
|
|
: error.response.body.message || "登录失败" |
|
|
: error.response && error.response.body && error.response.body.message ? |
|
|
|
|
|
error.response.body.message |
|
|
|
|
|
: "登录失败" |
|
|
if (message == '账号或密码错误') { |
|
|
if (message == '账号或密码错误') { |
|
|
message = '无此用户,请使用正确的登录信息' |
|
|
message = '无此用户,请使用正确的登录信息' |
|
|
} |
|
|
} |
|
|