This commit is contained in:
wong
2025-10-29 10:38:11 +08:00
parent 175c78c3d0
commit 942f08bbf2

View File

@@ -106,7 +106,7 @@ class PasswordLoginController extends BaseController
* @return array * @return array
* @throws \Exception * @throws \Exception
*/ */
protected function doLogin(string $account, string $password, int $typeId, string $deviceId): array protected function doLogin(string $account, string $password, int $typeId): array
{ {
// 获取用户信息 // 获取用户信息
$member = $this->getUser($account, $password, $typeId); $member = $this->getUser($account, $password, $typeId);
@@ -144,7 +144,6 @@ class PasswordLoginController extends BaseController
$params['account'], $params['account'],
$params['password'], $params['password'],
$params['typeId'], $params['typeId'],
$params['deviceId']
); );