|
|
@ -2,40 +2,41 @@ import React from 'react'; |
|
|
|
import { IconCode } from '@douyinfe/semi-icons'; |
|
|
|
|
|
|
|
export function getNavItem (user, dispatch) { |
|
|
|
return ( |
|
|
|
[ |
|
|
|
{ |
|
|
|
itemKey: 'analysis', |
|
|
|
text: '分析', |
|
|
|
icon: <IconCode />, |
|
|
|
items: [ |
|
|
|
{ |
|
|
|
itemKey: 'problemAnalysis', |
|
|
|
text: '问题分析', |
|
|
|
icon: <iconpark-icon style={{ width: 20, height: 20 }} name="iconfxwenti"></iconpark-icon>, |
|
|
|
to: '/analysis/problemAnalysis/problemData', |
|
|
|
items: [{ |
|
|
|
itemKey: 'problemData', to: '/analysis/problemAnalysis/problemData', text: '问题数据' |
|
|
|
}] |
|
|
|
}, { |
|
|
|
itemKey: 'operationAnalysis', |
|
|
|
text: '运维分析', |
|
|
|
icon: <iconpark-icon style={{ width: 20, height: 20 }} name="iconfxyunwei"></iconpark-icon>, |
|
|
|
to: '/analysis/operationAnalysis/operationData', |
|
|
|
items: [{ |
|
|
|
itemKey: 'operationData', to: '/analysis/operationAnalysis/operationData', text: '运维数据' |
|
|
|
}] |
|
|
|
},{ |
|
|
|
itemKey: 'workorderAnalysis', |
|
|
|
text: '工单分析', |
|
|
|
icon: <iconpark-icon style={{ width: 20, height: 20 }} name="iconfxgongdan"></iconpark-icon>, |
|
|
|
to: '/analysis/workorderAnalysis/workorderData', |
|
|
|
items: [{ |
|
|
|
itemKey: 'workorderData', to: '/analysis/workorderAnalysis/workorderData', text: '工单数据' |
|
|
|
}] |
|
|
|
}, |
|
|
|
] |
|
|
|
}, |
|
|
|
] |
|
|
|
); |
|
|
|
return ( |
|
|
|
[ |
|
|
|
{ |
|
|
|
itemKey: 'analysis', |
|
|
|
text: '分析', |
|
|
|
icon: <IconCode />, |
|
|
|
items: [ |
|
|
|
{ |
|
|
|
itemKey: 'problemAnalysis', |
|
|
|
text: '问题分析', |
|
|
|
icon: <iconpark-icon style={{ width: 20, height: 20 }} name="iconfxwenti"></iconpark-icon>, |
|
|
|
to: '/analysis/problemAnalysis/problemData', |
|
|
|
items: [{ |
|
|
|
itemKey: 'problemData', to: '/analysis/problemAnalysis/problemData', text: '问题数据' |
|
|
|
}] |
|
|
|
}, { |
|
|
|
itemKey: 'operationAnalysis', |
|
|
|
text: '运维分析', |
|
|
|
icon: <iconpark-icon style={{ width: 20, height: 20 }} name="iconfxyunwei"></iconpark-icon>, |
|
|
|
to: '/analysis/operationAnalysis/operationData', |
|
|
|
items: [{ |
|
|
|
itemKey: 'operationData', to: '/analysis/operationAnalysis/operationData', text: '运维数据' |
|
|
|
}] |
|
|
|
}, |
|
|
|
// { |
|
|
|
// itemKey: 'workorderAnalysis', |
|
|
|
// text: '工单分析', |
|
|
|
// icon: <iconpark-icon style={{ width: 20, height: 20 }} name="iconfxgongdan"></iconpark-icon>, |
|
|
|
// to: '/analysis/workorderAnalysis/workorderData', |
|
|
|
// items: [{ |
|
|
|
// itemKey: 'workorderData', to: '/analysis/workorderAnalysis/workorderData', text: '工单数据' |
|
|
|
// }] |
|
|
|
// }, |
|
|
|
] |
|
|
|
}, |
|
|
|
] |
|
|
|
); |
|
|
|
} |