From 076e2ec62dd0703a558092f1e45abfab2c18c648 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 21 Nov 2019 11:14:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=8B=E8=AF=95=E8=B7=AF?= =?UTF-8?q?=E7=94=B1=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/view/config/system.html | 2 +- route/{ => admin}/demo.php | 27 +++++++++++++-------------- 2 files changed, 14 insertions(+), 15 deletions(-) rename route/{ => admin}/demo.php (71%) diff --git a/app/admin/view/config/system.html b/app/admin/view/config/system.html index a4cb79bf5..92cb5a5ff 100644 --- a/app/admin/view/config/system.html +++ b/app/admin/view/config/system.html @@ -1,4 +1,4 @@ -
+
diff --git a/route/demo.php b/route/admin/demo.php similarity index 71% rename from route/demo.php rename to route/admin/demo.php index 594ad978e..faea57ef5 100644 --- a/route/demo.php +++ b/route/admin/demo.php @@ -13,34 +13,33 @@ // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin // +---------------------------------------------------------------------- -/* 演示环境禁止操作路由绑定 */ -if (in_array(request()->rootDomain(), ['ctolog.com', 'thinkadmin.top'])) { - $app = app(); - $app->route->post('admin/user/pass', function () { +/* 演示环境禁止操作路由绑定 */ +if (stripos(app()->request->rootDomain(), 'thinkadmin.top') !== false) { + app()->route->post('index/pass', function () { return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']); }); - $app->route->post('admin/index/pass', function () { - return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']); - }); - $app->route->post('admin/config/config', function () { + app()->route->post('config/system', function () { return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']); }); - $app->route->post('admin/config/storage', function () { + app()->route->post('config/storage', function () { return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']); }); - $app->route->post('admin/menu/index', function () { + app()->route->post('menu/index', function () { return json(['code' => 0, 'info' => '演示环境禁止给菜单排序!']); }); - $app->route->post('admin/menu/add', function () { + app()->route->post('menu/add', function () { return json(['code' => 0, 'info' => '演示环境禁止添加菜单!']); }); - $app->route->post('admin/menu/edit', function () { + app()->route->post('menu/edit', function () { return json(['code' => 0, 'info' => '演示环境禁止编辑菜单!']); }); - $app->route->post('admin/menu/state', function () { + app()->route->post('menu/state', function () { return json(['code' => 0, 'info' => '演示环境禁止禁用菜单!']); }); - $app->route->post('admin/menu/remove', function () { + app()->route->post('menu/remove', function () { return json(['code' => 0, 'info' => '演示环境禁止删除菜单!']); }); + app()->route->post('user/pass', function () { + return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']); + }); }