From 42677c23f1d4da55ff0277f87f981c11667deef3 Mon Sep 17 00:00:00 2001 From: yaooo <272523191@qq.com> Date: Wed, 13 Sep 2023 15:27:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=95=86=E5=AE=B6=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E5=AE=A1=E6=A0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/Auth.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controller/api/Auth.php b/app/controller/api/Auth.php index acf2caf2..440f768e 100644 --- a/app/controller/api/Auth.php +++ b/app/controller/api/Auth.php @@ -1339,6 +1339,7 @@ class Auth extends BaseController if (!$repository->getWhereCount(['mer_intention_id' => $id, 'is_del' => 0])) return app('json')->fail('数据不存在'); $data = $this->request->params(['status', 'fail_msg']); + $data['create_mer'] = 0; $data['fail_msg'] = $data['status'] == 1 ? '自动审核通过' : '自动审核拒绝'; $repository->updateStatus($id, $data); return app('json')->success('修改成功');