From f16e9c6f19a68825e638e33d186b63e2471a6680 Mon Sep 17 00:00:00 2001 From: lanzu_qsy <334039090@qq.com> Date: Fri, 4 Sep 2020 15:54:11 +0800 Subject: [PATCH 1/2] . --- resources/lang/zh-CN/ims-cjdc-store.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/resources/lang/zh-CN/ims-cjdc-store.php b/resources/lang/zh-CN/ims-cjdc-store.php index b3b144d..95450fd 100644 --- a/resources/lang/zh-CN/ims-cjdc-store.php +++ b/resources/lang/zh-CN/ims-cjdc-store.php @@ -1,7 +1,8 @@ - [ - 'ImsCjdcStore' => 'ImsCjdcStore', + 'ImsCjdcStore' => '店铺', + 'stores'=>'商户' ], 'fields' => [ 'name' => '商家名称', From c7cda89fc9b9e5157dc4188930fb446e3d24ee34 Mon Sep 17 00:00:00 2001 From: lanzu_qsy <334039090@qq.com> Date: Fri, 4 Sep 2020 17:08:02 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E5=A4=8D:=20=E5=AE=A1=E6=A0=B8?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=95=86=E3=80=81=E5=B8=82=E5=9C=BA=E7=BB=8F?= =?UTF-8?q?=E7=90=86=E7=9A=84=E6=8F=90=E7=8E=B0=E5=AE=A1=E6=A0=B8=E6=97=B6?= =?UTF-8?q?=EF=BC=8C=E6=9C=AA=E9=80=89=E6=8B=A9=E6=8F=90=E7=8E=B0=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E4=B9=9F=E5=8F=AF=E4=BB=A5=E4=BF=9D=E5=AD=98=E6=88=90?= =?UTF-8?q?=E5=8A=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Admin/Controllers/LanzuMpWithdrawController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Admin/Controllers/LanzuMpWithdrawController.php b/app/Admin/Controllers/LanzuMpWithdrawController.php index 1c8f29c..5fb4ea7 100755 --- a/app/Admin/Controllers/LanzuMpWithdrawController.php +++ b/app/Admin/Controllers/LanzuMpWithdrawController.php @@ -147,7 +147,8 @@ class LanzuMpWithdrawController extends AdminController if ($form->isCreating()) { $form->radio('status')->options([1 => '通过审核', -1 => '拒绝'])->default(-1)->disable(); } else { - $form->radio('status')->options([1 => '通过审核', -1 => '拒绝'])->default(-1); + $form->model()->status = 1; + $form->radio('status')->options([1 => '通过审核', -1 => '拒绝']); } }