feat(LoginController): 修复登录功能

This commit is contained in:
mkm 2024-07-01 11:16:04 +08:00
parent a9091c03ea
commit 15eba34386

View File

@ -37,8 +37,8 @@ class LoginController extends BaseAdminController
*/
public function account()
{
$params = $this->request->post();
// $params = (new LoginValidate())->post()->goCheck();
// $params = $this->request->post();
$params = (new LoginValidate())->post()->goCheck();
return $this->data((new LoginLogic())->login($params));
}