| | |
| | | import QualityInspection from '@/views/PackageTwo/index.vue'; //数据质检-入库质检 |
| | | |
| | | |
| | | // 通信资源管理 |
| | | import commResource from '../views/comm/commResource/commResource.vue' |
| | | // 通信网系管理 |
| | | import commNetwork from '../views/comm/commNetwork/commNetwork.vue' |
| | | // 通信想定管理 |
| | | import commScenario from '../views/comm/commScenario/commScenario.vue' |
| | | // 多媒体素材管理 |
| | | import multimedia from '../views/comm/multimedia/multimedia.vue' |
| | | // 仿真模型管理 |
| | | import simulationModel from '../views/comm/simulationModel/simulationModel.vue' |
| | | //通信方案管理 |
| | | import commScheme from '../views/comm/commScheme/commScheme.vue' |
| | | //方案拟制 |
| | | import planFormulation from '../views/comm/planFormulation/planFormulation.vue' |
| | | //方案讲评 |
| | | import planReview from '../views/comm/planReview/planReview.vue' |
| | | //通信毁伤影像评估 |
| | | import damageAssess from '../views/comm/damageAssess/damageAssess.vue' |
| | | |
| | | |
| | | |
| | | const originalPush = VueRouter.prototype.push; |
| | |
| | | component: Home, |
| | | redirect: '/Synthesis', |
| | | children: [ |
| | | { |
| | | path: '/damageAssess', |
| | | component: damageAssess, |
| | | name: 'damageAssess', |
| | | meta: { |
| | | title: '通信毁伤影响评估', |
| | | requireAuth: true, // 标识该路由是否需要登录 |
| | | }, |
| | | }, |
| | | { |
| | | path: '/planFormulation', |
| | | component: planFormulation, |
| | | name: 'planFormulation', |
| | | meta: { |
| | | title: '通信方案拟制', |
| | | requireAuth: true, // 标识该路由是否需要登录 |
| | | }, |
| | | }, |
| | | { |
| | | path: '/planReview', |
| | | component: planReview, |
| | | name: 'planReview', |
| | | meta: { |
| | | title: '方案讲评', |
| | | requireAuth: true, // 标识该路由是否需要登录 |
| | | }, |
| | | }, |
| | | { |
| | | path: '/commScheme', |
| | | component: commScheme, |
| | | name: 'commScheme', |
| | | meta: { |
| | | title: '通信方案管理', |
| | | requireAuth: true, // 标识该路由是否需要登录 |
| | | }, |
| | | }, |
| | | { |
| | | path: '/simulationModel', |
| | | component: simulationModel, |
| | | name: 'simulationModel', |
| | | meta: { |
| | | title: '仿真模型管理', |
| | | requireAuth: true, // 标识该路由是否需要登录 |
| | | }, |
| | | }, |
| | | { |
| | | path: '/multimedia', |
| | | component: multimedia, |
| | | name: 'multimedia', |
| | | meta: { |
| | | title: '多媒体素材管理', |
| | | requireAuth: true, // 标识该路由是否需要登录 |
| | | }, |
| | | }, |
| | | { |
| | | path: '/commScenario', |
| | | component: commScenario, |
| | | name: 'commScenario', |
| | | meta: { |
| | | title: '通信想定管理', |
| | | requireAuth: true, // 标识该路由是否需要登录 |
| | | }, |
| | | }, |
| | | { |
| | | path: '/commNetwork', |
| | | component: commNetwork, |
| | | name: 'commNetwork', |
| | | meta: { |
| | | title: '通信网系管理', |
| | | requireAuth: true, // 标识该路由是否需要登录 |
| | | }, |
| | | }, |
| | | { |
| | | path: '/commResource', |
| | | component: commResource, |
| | | name: 'commResource', |
| | | meta: { |
| | | title: '通信资源管理', |
| | | requireAuth: true, // 标识该路由是否需要登录 |
| | | }, |
| | | }, |
| | | { |
| | | path: '/WareInspection', |
| | | component: WareInspection, |
| | |
| | | requireAuth: true, // 标识该路由是否需要登录 |
| | | }, |
| | | }, |
| | | |
| | | ], |
| | | }, |
| | | ]; |