忽略runtime目录

This commit is contained in:
luofei 2024-02-19 09:32:31 +08:00
parent 68b75ca7b6
commit 67413ccd65
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
/.idea /.idea
/.vscode /.vscode
/runtime /runtime
/public/runtime
*.log *.log
.env .env
.phpstorm.meta.php .phpstorm.meta.php

View File

@ -31,6 +31,6 @@ class LogMiddleware extends BaseMiddleware
public function after(Response $response) public function after(Response $response)
{ {
if ($this->request->method() == 'GET') return; if ($this->request->method() == 'GET') return;
// SwooleTaskService::log($this->request->merId(), AdminLogRepository::parse($this->request)); SwooleTaskService::log($this->request->merId(), AdminLogRepository::parse($this->request));
} }
} }

View File

@ -357,7 +357,7 @@ class Auth extends BaseController
$data = $this->request->params(['phone', 'sms_code', 'spread', 'auth_token', ['user_type', 'h5']]); $data = $this->request->params(['phone', 'sms_code', 'spread', 'auth_token', ['user_type', 'h5']]);
$validate->sceneSmslogin()->check($data); $validate->sceneSmslogin()->check($data);
$sms_code = app()->make(SmsService::class)->checkSmsCode($data['phone'], $data['sms_code'], 'login'); $sms_code = app()->make(SmsService::class)->checkSmsCode($data['phone'], $data['sms_code'], 'login');
// if (!$sms_code) return app('json')->fail('验证码不正确'); if (!$sms_code) return app('json')->fail('验证码不正确');
$user = $repository->accountByUser($data['phone']); $user = $repository->accountByUser($data['phone']);
if (!$user) $user = $repository->getWhere(['phone' => $data['phone']]); if (!$user) $user = $repository->getWhere(['phone' => $data['phone']]);
$auth = $this->parseAuthToken($data['auth_token']); $auth = $this->parseAuthToken($data['auth_token']);