diff --git a/app/admin/controller/Menu.php b/app/admin/controller/Menu.php index 90ba46cf0..549e62fa2 100644 --- a/app/admin/controller/Menu.php +++ b/app/admin/controller/Menu.php @@ -44,6 +44,13 @@ class Menu extends Controller { $this->title = '系统菜单管理'; $this->type = $this->get['type'] ?? 'index'; + + // 获取顶级菜单ID + $this->pid = $this->get['pid'] ?? ''; + + // 查询顶级菜单集合 + $this->menup_list = SystemMenu::mk()->where(['pid' => 0, 'status' => 1])->order('sort desc,id asc')->column('id,pid,title', 'id'); + SystemMenu::mQuery()->layTable(); } @@ -66,6 +73,14 @@ class Menu extends Controller } // 菜单数据树数据变平化 $data = DataExtend::arr2table($data); + + // 过滤非当前顶级菜单的下级菜单,并重新索引数组 + if ($this->type === 'index' && $this->pid) { + $data = array_values(array_filter($data, function ($item) { + return strpos($item['spp'], ",{$this->pid},") !== false; + })); + } + foreach ($data as &$vo) { if ($vo['url'] !== '#' && !preg_match('/^(https?:)?(\/\/|\\\\)/i', $vo['url'])) { $vo['url'] = trim(url($vo['url']) . ($vo['params'] ? "?{$vo['params']}" : ''), '\\/'); diff --git a/app/admin/controller/api/Plugs.php b/app/admin/controller/api/Plugs.php index aabb79164..1f2a7ee44 100644 --- a/app/admin/controller/api/Plugs.php +++ b/app/admin/controller/api/Plugs.php @@ -55,6 +55,15 @@ class Plugs extends Controller } } } + // 读取extra自定义字体图标 + if (empty($this->extraIcons = $this->app->cache->get('ThinkAdminExtraIcons', []))) { + $style = file_get_contents(syspath('public/static/extra/icon/iconfont.css')); + if (preg_match_all('#\.(iconfont-[\w-]+):#', $style, $matches)) { + if (count($this->thinkIcons = $matches[1]) > 0) { + $this->app->cache->set('ThinkAdminExtraIcons', $this->extraIcons, 60); + } + } + } $this->field = $this->app->request->get('field', 'icon'); $this->fetch(dirname(__DIR__, 2) . '/view/api/icon.html'); } diff --git a/app/admin/view/api/icon.html b/app/admin/view/api/icon.html index 9100e2987..06f082e14 100644 --- a/app/admin/view/api/icon.html +++ b/app/admin/view/api/icon.html @@ -2,7 +2,7 @@
-