From f4bda9cf4b2b4ffd3fa7002066570287769e5cc6 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 23 Jun 2022 18:30:08 +0800 Subject: [PATCH] Update Menu.php --- app/admin/controller/Menu.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/admin/controller/Menu.php b/app/admin/controller/Menu.php index 22e02fb2e..216bbe8eb 100644 --- a/app/admin/controller/Menu.php +++ b/app/admin/controller/Menu.php @@ -100,15 +100,15 @@ class Menu extends Controller { if ($this->request->isGet()) { /* 清理权限节点 */ - if ($this->app->isDebug()) { + if ($isDebug = $this->app->isDebug()) { AdminService::instance()->clearCache(); } - /* 选择自己的上级菜单 */ + /* 选择自己上级菜单 */ $vo['pid'] = $vo['pid'] ?? input('pid', '0'); /* 读取系统功能节点 */ $this->auths = []; - $this->nodes = MenuService::instance()->getList(); - foreach (NodeService::instance()->getMethods($this->app->isDebug()) as $node => $item) { + $this->nodes = MenuService::instance()->getList($isDebug); + foreach (NodeService::instance()->getMethods($isDebug) as $node => $item) { if ($item['isauth'] && substr_count($node, '/') >= 2) { $this->auths[] = ['node' => $node, 'title' => $item['title']]; }