diff --git a/app/admin/controller/Auth.php b/app/admin/controller/Auth.php index 3748202c2..add8606c2 100644 --- a/app/admin/controller/Auth.php +++ b/app/admin/controller/Auth.php @@ -99,8 +99,9 @@ class Auth extends Controller { $map = $this->_vali(['auth.require#id' => '权限ID不能为空!']); if (input('action') === 'get') { + if ($this->app->isDebug()) AdminService::instance()->clearCache(); $checkeds = $this->app->db->name('SystemAuthNode')->where($map)->column('node'); - $this->success('获取权限节点成功!', AdminService::instance()->clearCache()->getTree($checkeds)); + $this->success('获取权限节点成功!', AdminService::instance()->getTree($checkeds)); } elseif (input('action') === 'save') { [$post, $data] = [$this->request->post(), []]; foreach ($post['nodes'] ?? [] as $node) { diff --git a/app/admin/controller/Index.php b/app/admin/controller/Index.php index e732e45e7..5a0fc0ac3 100644 --- a/app/admin/controller/Index.php +++ b/app/admin/controller/Index.php @@ -36,8 +36,13 @@ class Index extends Controller */ public function index() { - $this->login = AdminService::instance()->apply(true)->isLogin(); + if ($this->app->isDebug()) { + AdminService::instance()->apply(true); + } else { + AdminService::instance()->apply(false); + } $this->menus = MenuService::instance()->getTree(); + $this->login = AdminService::instance()->isLogin(); if (empty($this->menus) && empty($this->login)) { $this->redirect(sysuri('admin/login/index')); } else { diff --git a/app/admin/controller/Menu.php b/app/admin/controller/Menu.php index 3c042bf66..c926f4846 100644 --- a/app/admin/controller/Menu.php +++ b/app/admin/controller/Menu.php @@ -99,7 +99,9 @@ class Menu extends Controller { if ($this->request->isGet()) { /* 清理权限节点 */ - AdminService::instance()->clearCache(); + if ($this->app->isDebug()) { + AdminService::instance()->clearCache(); + } /* 选择自己的上级菜单 */ $vo['pid'] = $vo['pid'] ?? input('pid', '0'); /* 读取系统功能节点 */ diff --git a/app/admin/controller/api/Plugs.php b/app/admin/controller/api/Plugs.php index 65cd0894f..2341f1147 100644 --- a/app/admin/controller/api/Plugs.php +++ b/app/admin/controller/api/Plugs.php @@ -46,6 +46,7 @@ class Plugs extends Controller { try { if (AdminService::instance()->isSuper()) { + AdminService::instance()->clearCache(); SystemService::instance()->pushRuntime(); $this->success('网站缓存加速成功!'); } else { @@ -66,6 +67,7 @@ class Plugs extends Controller { try { if (AdminService::instance()->isSuper()) { + AdminService::instance()->clearCache(); SystemService::instance()->clearRuntime(); $this->success('清理网站缓存成功!'); } else { diff --git a/vendor/services.php b/vendor/services.php index 879bfdf24..95e185a74 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\admin\\Library',