From 308aa4ac4c3e96a98454630266085e4b1b03fc86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Wed, 7 Sep 2022 17:13:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=90=8E=E5=8F=B0=E5=85=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/Index.php | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/app/admin/controller/Index.php b/app/admin/controller/Index.php index 37d48f296..c57820c49 100644 --- a/app/admin/controller/Index.php +++ b/app/admin/controller/Index.php @@ -77,20 +77,7 @@ class Index extends Controller } } } - /** - * 表单数据处理 - * @param array $data - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - protected function _form_filter(array &$data) - { - if ($this->request->isPost()) { - unset($data['username']); - unset($data['authorize']); - } - } + /** * 修改用户资料 * @login true @@ -107,7 +94,18 @@ class Index extends Controller } /** - * 资料修改后处理 + * 资料修改表单处理 + * @param array $data + */ + protected function _info_form_filter(array &$data) + { + if ($this->request->isPost()) { + unset($data['username'], $data['authorize']); + } + } + + /** + * 资料修改结果处理 * @param bool $status */ protected function _info_form_result(bool $status)