import React from 'react'; import { IconCode } from '@douyinfe/semi-icons'; export function getNavItem (user, dispatch) { return ( [ { itemKey: 'facility', text: '设备', icon: , items: [ { itemKey: 'deviceQuery', text: '设备查询', icon: , to: '/facility/deviceQuery/maintenanceRecords1', items: [{ itemKey: 'maintenanceRecords1', to: '/facility/deviceQuery/maintenanceRecords1', text: '维护记录' }] }, { itemKey: 'serverInformation', text: '服务器信息', icon: , to: '/facility/serverInformation/monitor', items: [{ itemKey: 'monitor', to: '/facility/serverInformation/monitor', text: '运维监控' },{ itemKey: 'maintenanceRecords', to: '/facility/serverInformation/maintenanceRecords', text: '维护记录' }] },{ itemKey: 'other', text: '其他', icon: , to: '/facility/other/other1', items: [{ itemKey: 'other1', to: '/facility/other/other1', text: '其他' }] } ] }, ] ); }