From 9b74ec66ac8a82da572d713db5fb106332051c2b Mon Sep 17 00:00:00 2001 From: yaooo <272523191@qq.com> Date: Wed, 13 Sep 2023 20:56:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=B5=8B=E8=AF=95=E7=94=B5?= =?UTF-8?q?=E5=AD=90=E5=90=88=E5=90=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/Auth.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controller/api/Auth.php b/app/controller/api/Auth.php index 9a3198a2..898f4336 100644 --- a/app/controller/api/Auth.php +++ b/app/controller/api/Auth.php @@ -1355,10 +1355,10 @@ class Auth extends BaseController public function merchantStatus($id) { Log::info("接收到同步商户状态HOST:" . request()->url()); - Log::info("接收到同步商户状态信息:" . json_encode($this->request->params())); + Log::info("接收到同步商户状态信息:" . json_encode($this->request)); $repository = app()->make(MerchantIntentionRepository::class); if (!$repository->getWhereCount(['mer_intention_id' => $id, 'is_del' => 0])) - return app('json')->fail('数据不存在'); + return app('json')->fail('数据不存在'); $status = $this->request->params(['status']); $data['status'] = $status; $data['create_mer'] = -1;