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} -
-
-
-
- -

程序名称,在后台左上角标题处理显示

-
-
- -

程序版本,在后台左上角标题处理显示

-
-
- -

网站名称,将在浏览器的标签上显示名称

-
-
-
-
- 浏览器图标 - Browser -
- icon - - 上传图片 -

建议上传 ICO 图标的尺寸为 128x128 ICON在线制作

-
-
-
- -

网站备案号,可以在备案管理中心查询获取,将在登录页面下面显示

-
-
- -

网站版权信息,在后台登录页面显示版本信息并链接到备案到信息备案管理系统

-
-
-
-
-
- -
-
+{if auth('config')} +
+ 系统配置参数: + 修改系统配置 +
+{/if} +
+
+
+ 网站图标 + icon +
+
+ 网站名称 Website + +

网站名称及网站图标,将显示在浏览器的标签上

+
+
+
+ 管理程序名称 Name + +

管理程序名称,将显示在后台左上角标题

+
+
+ 管理程序版本 Version + +

管理程序版本,将显示在后台左上角标题

+
+ +
+ 网站备案号 Miitbeian + +

网站备案号,可以在备案管理中心查询获取,将显示在登录页面下面

+
+
+ 网站版权信息 Copyright + +

网站版权信息,在后台登录页面显示版本信息并链接到备案到信息备案管理系统

+
+
+{/block} + +{block name='style'} + {/block} \ No newline at end of file diff --git a/application/admin/view/config/storage-local.html b/application/admin/view/config/storage-local.html index a2a85168a..235e643c6 100644 --- a/application/admin/view/config/storage-local.html +++ b/application/admin/view/config/storage-local.html @@ -1,7 +1,7 @@
-

文件将存储在本地服务器,需确保服务器的 public/upload 目录有写入权限,有足够的存储空间!

+

文件将存储在本地服务器,需确保服务器的 public/upload 目录有写入权限,有足够的存储空间!

diff --git a/application/admin/view/config/system-config.html b/application/admin/view/config/system-config.html new file mode 100644 index 000000000..95924546e --- /dev/null +++ b/application/admin/view/config/system-config.html @@ -0,0 +1,56 @@ + +
+
+ +

网站名称,将在浏览器的标签上显示名称

+
+
+ +

管理程序名称,在后台左上角标题处理显示

+
+
+ +

管理程序版本,在后台左上角标题处理显示

+
+
+ 浏览器图标 Browser +
+ icon + + 上传图片 +

建议上传 ICO 图标的尺寸为 128x128 ICON在线制作

+
+
+
+ +

网站备案号,可以在备案管理中心查询获取,将在登录页面下面显示

+
+
+ +

网站版权信息,在后台登录页面显示版本信息并链接到备案到信息备案管理系统

+
+ +
+ +
+ + +
+
+ + \ No newline at end of file