where(['type' => 1, 'del' => 0, 'disable' => 0]) ->order(['sort' => 'desc']) ->withAttr('uri', function ($value) { return self::uri($value); })->select()->toArray(); // 处理返回数据 $none_auth = AuthServer::getRoleNoneAuthIds($role_id); $lists = self::setRoleMenu($none_auth, $lists); return ArrayServer::linear_to_tree($lists); } catch (\Exception $e) { return []; } } /** * 设置角色菜单 * @param $none_auth * @param $lists * @return mixed */ private static function setRoleMenu(&$none_auth, $lists) { foreach ($lists as $k => $v) { if (in_array($v['id'], $none_auth)) { unset($lists[$k]); } } return array_values($lists); } /** * 设置uri * @param $uri * @return string */ private static function uri($uri) { return $uri; // if ($uri) { // return Route::buildUrl($uri); // } // return ''; } /** * Notes: 创建菜单 * @param $menu * @param bool $max * @author 张无忌(2021/2/3 9:53) * @return string */ protected static function createHtml($menu, $max = false) { //一级菜单 if ($max) { $html = ''; $choose_class = 'layui-this'; foreach ($menu as $k => $v) { $sub = isset($v['sub']) ? $v['sub'] : []; if ($sub) { $html .= '