import React from 'react'; import { Link } from 'react-router-dom'; import { Menu } from 'antd'; import { SettingOutlined } from '@ant-design/icons'; import { Func } from '$utils'; const SubMenu = Menu.SubMenu; export function getNavItem(user, dispatch) { // if (!Func.isAuthorized("ORG_MANAGE")) { // return null // } return ( Func.isAuthorized('ORG_MANAGE') && } title={'组织管理'}> {Func.isAuthorized('USER_CONFIG') && 部门成员 } {Func.isAuthorized('AUTH_CONFIG') && 权限配置 } ); }