You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.5 KiB
40 lines
1.5 KiB
import {
|
|
ReserveItemsReporting, ReserveItemsPeriodicStatistics, ReserveItemsDepSummary,ReserveItemsLostStatistics
|
|
} from './containers';
|
|
|
|
export default [{
|
|
type: 'inner',
|
|
route: {
|
|
path: '/businessManagement',
|
|
key: 'businessManagement',
|
|
breadcrumb: '业务管理',
|
|
// 不设置 component 则面包屑禁止跳转
|
|
childRoutes: [
|
|
{
|
|
path: '/pmReport',
|
|
key: 'pmReport',
|
|
breadcrumb: '项目报表',
|
|
childRoutes: [{
|
|
path: '/reserveItemsReporting',
|
|
key: 'reserveItemsReporting',
|
|
component: ReserveItemsReporting,
|
|
breadcrumb: '储备项目报备表'
|
|
}, {
|
|
path: '/reserveItemsPeriodicStatistics',
|
|
key: 'reserveItemsPeriodicStatistics',
|
|
breadcrumb: '储备项目周期统计表',
|
|
component: ReserveItemsPeriodicStatistics
|
|
}, {
|
|
path: '/reserveItemsDepSummary',
|
|
key: 'reserveItemsDepSummary',
|
|
breadcrumb: '部门储备项目汇总表',
|
|
component: ReserveItemsDepSummary
|
|
}, {
|
|
path: '/reserveItemsLostStatistics',
|
|
key: 'reserveItemsLostStatistics',
|
|
breadcrumb: '储备项目丢单统计表',
|
|
component: ReserveItemsLostStatistics
|
|
}]
|
|
}]
|
|
}
|
|
}];
|