1.优化管理员提现记录审核为一个操作

2.修复创建玩家报错“参数%s不能为空”
3.修复玩家登录报错
This commit is contained in:
2026-05-30 18:27:26 +08:00
parent 9a3f3b747f
commit 75e91fee13
11 changed files with 438 additions and 98 deletions

View File

@@ -108,7 +108,8 @@ class Auth extends MobileBase
$ok = $this->auth->login($username, $password, true);
if (!$ok) {
return $this->mobileError(1101, 'Incorrect account or password');
$detail = (string) $this->auth->getError();
return $this->mobileError(1101, $detail !== '' ? $detail : 'Incorrect account or password');
}
$this->bindMobileDeviceSession($request);