import React from 'react';
import { IconCode } from '@douyinfe/semi-icons';
export function getNavItem (user, dispatch) {
return (
[
{
itemKey: 'install',
text: '设置',
icon: ,
items: [
{
itemKey: 'authentication',
text: '鉴权管理',
icon: ,
to: '/install/authentication/roles',
items: [{
itemKey: 'roles', to: '/install/authentication/roles', text: '人员及角色'
}]
}, {
itemKey: 'mapping',
text: '关系映射',
icon: ,
to: '/install/mapping/system',
items: [{
itemKey: 'system', to: '/install/mapping/system', text: '系统映射'
}]
},
// {
// itemKey: 'order ',
// text: '工单管理',
// icon: ,
// to: '/install/order/setup',
// items: [{
// itemKey: 'setup', to: '/install/order/setup', text: '工单设置'
// }]
// },
// {
// itemKey: 'relation',
// text: '容差管理',
// icon: ,
// to: '/install/relation/set',
// items: [{
// itemKey: 'set', to: '/install/relation/set', text: '容差设置'
// }]
// },
]
},
]
);
}