diff --git a/application/admin/controller/Config.php b/application/admin/controller/Config.php index b18160879..f88cab160 100644 --- a/application/admin/controller/Config.php +++ b/application/admin/controller/Config.php @@ -62,21 +62,29 @@ class Config extends Controller * 系统参数配置 * @auth true * @menu true - * @throws \think\Exception - * @throws \think\exception\PDOException */ public function info() + { + $this->title = '系统参数配置'; + $this->fetch(); + } + + /** + * 修改系统能数配置 + * @auth true + * @throws \think\Exception + * @throws \think\exception\PDOException + */ + public function config() { $this->applyCsrfToken(); if (Request::isGet()) { - $this->title = '系统参数配置'; - $this->fetch(); - } else { - foreach (Request::post() as $key => $value) { - sysconf($key, $value); - } - $this->success('系统参数配置成功!'); + $this->fetch('system-config'); } + foreach (Request::post() as $key => $value) { + sysconf($key, $value); + } + $this->success('系统参数配置成功!'); } /** diff --git a/application/admin/view/config/info.html b/application/admin/view/config/info.html index 04408b659..6efe270c7 100644 --- a/application/admin/view/config/info.html +++ b/application/admin/view/config/info.html @@ -11,67 +11,75 @@ {/foreach} -
+{if auth('config')} +网站名称及网站图标,将显示在浏览器的标签上
+管理程序名称,将显示在后台左上角标题
+管理程序版本,将显示在后台左上角标题
+网站备案号,可以在备案管理中心查询获取,将显示在登录页面下面
+网站版权信息,在后台登录页面显示版本信息并链接到备案到信息备案管理系统
+