mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
更新节点模块
This commit is contained in:
parent
fdf08b92e8
commit
2f9f5261f1
@ -66,6 +66,7 @@ class Menu extends BasicAdmin {
|
||||
*/
|
||||
protected function _form_filter(&$vo) {
|
||||
if ($this->request->isGet()) {
|
||||
// 上级菜单处理
|
||||
$_menus = Db::name($this->table)->where('status', '1')->order('sort desc,id desc')->select();
|
||||
$_menus[] = ['title' => '顶级菜单', 'id' => '0', 'pid' => '-1'];
|
||||
$menus = Tools::arr2table($_menus);
|
||||
@ -81,7 +82,15 @@ class Menu extends BasicAdmin {
|
||||
}
|
||||
}
|
||||
}
|
||||
$this->assign('nodes', Node::getNodeTree(APP_PATH));
|
||||
// 读取系统功能节点
|
||||
$nodes = Node::getNodeTree(APP_PATH);
|
||||
$denyAll = Db::name('SystemNode')->where('is_menu', '0')->column('node');
|
||||
foreach ($nodes as $key => $vo) {
|
||||
if (in_array($vo, $denyAll)) {
|
||||
unset($nodes[$key]);
|
||||
}
|
||||
}
|
||||
$this->assign('nodes', array_values($nodes));
|
||||
$this->assign('menus', $menus);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user