export default [ { //风场总览 path: 'WindFarmOverview', name: 'WindFarmOverview', component: () => import('@/components/layout/SubPageComp.vue') }, { //机组信息 path: 'CrewOverview/', name: 'CrewOverview', component: () => import('@/views/WindFarmOverview/CrewOverview.vue') }, { //风场总览 -->地图模式 / 标准模式 => 机组概况 path: 'CrewOverview/:id', name: 'CrewOverviewProp', props: true, component: () => import('@/views/WindFarmOverview/CrewOverview.vue') }, { //电网控制 path: 'GridControl', name: 'GridControl', component: () => import('@/components/layout/SubPageComp.vue') }, { //全息监测 path: 'holographicMonitor', name: 'holographicMonitor', component: () => import('@/components/layout/SubPageComp.vue') }, { //场群协同 path: 'groupCoordination', name: 'groupCoordination', component: () => import('@/components/layout/SubPageComp.vue') }, { //状态预测 path: 'statePrediction', name: 'statePrediction', component: () => import('@/components/layout/SubPageComp.vue') }, { //健康管理 path: 'HealthManage', name: 'HealthManage', component: () => import('@/components/layout/SubPageComp.vue') }, { //运维排程 path: 'OperationInfo', name: 'OperationInfo', component: () => import('@/views/OperationInfo/OperationInfo.vue') }, { // 智能决策 path: 'IntelligentControl', name: 'IntelligentControl', component: () => import('@/components/layout/SubPageComp.vue') }, ]