diff --git a/app/admin/controller/Auth.php b/app/admin/controller/Auth.php index a635d1765..2d8037b19 100644 --- a/app/admin/controller/Auth.php +++ b/app/admin/controller/Auth.php @@ -73,7 +73,7 @@ class Auth extends Controller } /** - * 修改系统权限状态 + * 修改权限状态 * @auth true * @throws \think\db\exception\DbException */ @@ -83,17 +83,6 @@ class Auth extends Controller $this->_save($this->table, ['status' => input('status')]); } - /** - * 删除系统权限 - * @auth true - * @throws \think\db\exception\DbException - */ - public function remove() - { - $this->_applyFormToken(); - $this->_delete($this->table); - } - /** * 权限配置节点 * @auth true @@ -124,6 +113,17 @@ class Auth extends Controller $this->_form($this->table, 'apply'); } } + + /** + * 删除系统权限 + * @auth true + * @throws \think\db\exception\DbException + */ + public function remove() + { + $this->_applyFormToken(); + $this->_delete($this->table); + } /** * 删除结果处理 diff --git a/app/admin/controller/Config.php b/app/admin/controller/Config.php index ef4d6d23f..c3a1ebb02 100644 --- a/app/admin/controller/Config.php +++ b/app/admin/controller/Config.php @@ -42,7 +42,7 @@ class Config extends Controller } /** - * 修改系统能数配置 + * 修改系统参数配置 * @auth true * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException @@ -52,7 +52,7 @@ class Config extends Controller { $this->_applyFormToken(); if ($this->request->isGet()) { - $this->title = '系统参数配置'; + $this->title = '修改系统参数配置'; $this->fetch(); } foreach ($this->request->post() as $key => $value) { @@ -62,7 +62,7 @@ class Config extends Controller } /** - * 文件存储引擎 + * 修改文件存储引擎 * @auth true * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException