This commit is contained in:
mkm 2024-06-15 15:08:09 +08:00
commit 98683fcc52

View File

@ -18,7 +18,7 @@ class LoginController extends BaseApiController
public function account()
{
$params=$this->request->post();
$params = (new LoginAccountValidate())->post()->goCheck();
// $params = (new LoginAccountValidate())->post()->goCheck();
$result = LoginLogic::login($params);
if (false === $result) {
return $this->fail(LoginLogic::getError());