diff --git a/app/api/logic/LoginLogic.php b/app/api/logic/LoginLogic.php index ad83473aa..098cebdd3 100755 --- a/app/api/logic/LoginLogic.php +++ b/app/api/logic/LoginLogic.php @@ -226,7 +226,7 @@ class LoginLogic extends BaseLogic $decodedArray = json_decode(json_encode($decoded), true); $jwtData = $decodedArray['data'] ?? []; if (empty($jwtData['uid']) || empty($jwtData['phone'])) { - self::setError('解析数据缺少必要参数'); + self::setError('当前账号未授权,请手动登录'); return false; } $where = ['account|mobile' => $jwtData['phone']];