import React from 'react'; import { IconCode } from '@douyinfe/semi-icons'; export function getNavItem (user, dispatch) { return ( [ { itemKey: 'service', text: '服务', icon: , items: [ { itemKey: 'reportingServices', text: '报表服务', icon: , to: '/service/reportingServices/reportManagement', items: [{ itemKey: 'reportManagement', to: '/service/reportingServices/reportManagement', text: '报表管理' }] }, { itemKey: 'maintenancePlan', text: '维护计划', icon: , to: '/service/maintenancePlan/cyclePlan', items: [{ itemKey: 'cyclePlan', to: '/service/maintenancePlan/cyclePlan', text: '周期计划' }, { itemKey: 'temporaryResponse', to: '/service/maintenancePlan/temporaryResponse', text: '临时响应' },{ itemKey: 'serviceRecord1', to: '/service/serviceRecord/serviceRecord1', text: '响应记录', },] }, { itemKey: 'carrierPigeon', text: '信鸽服务', icon: , to: '/service/carrierPigeon/emPush', items: [{ itemKey: 'emPush', to: '/service/carrierPigeon/emPush', text: 'EM推送' }, // { // itemKey: 'appPush', to: '/service/carrierPigeon/appPush', text: '应用推送' // } ] }, // { // itemKey: 'preventiveMaintenance', // text: '预防性维保', // icon: , // to: '/service/preventiveMaintenance/maintenanceModel', // items: [{ // itemKey: 'maintenanceModel', to: '/service/preventiveMaintenance/maintenanceModel', text: '维保模型' // }] // }, { itemKey: 'serviceRecord', text: '硬件维修', icon: , to: '/service/serviceRecord/MaintenanceRecords', items: [{ itemKey:'MaintenanceRecords',to:'/service/serviceRecord/MaintenanceRecords',text:'维修记录'}] } ] }, ] ); }