// 内嵌页面路由 export default [ // 消息记录 { path: '/messageReminder', name: 'messageReminderLink', component: () => import('@/views/MessageReminder') }, // /* 设备管理首页*/ { path: '/Equipment/EquipmentIndex', name: 'EquipmentIndexLink', component: () => import('@/views/Device/EquipmentIndex.vue') }, { path: '/Equipment/EquipmentMap', name: 'EquipmentMapLink', component: () => import('@/views/Device/performanceAnalysis/EquipmentMap.vue') }, // /* 资源管理 ---> 基础扩展配置 */ { path: '/Equipment/resourceManage/BasicExtension', name: 'BasicExtensionLink', component: () => import('@/views/Device/resourceManage/BasicExtension.vue') }, // /* 资源管理 ---> 单位管理 */ { path: '/Equipment/resourceManage/UnitManage', name: 'UnitManageLink', component: () => import('@/views/Device/resourceManage/UnitManage.vue') }, // /* 资源管理 ---> 人员管理 */ { path: '/Equipment/resourceManage/UserManage', name: 'UserManageLink', component: () => import('@/views/Device/resourceManage/UserManage.vue') }, // /* 资源管理 ---> 合同管理 */ { path: '/Equipment/resourceManage/ContractManage', name: 'ContractManageLink', component: () => import('@/views/Device/resourceManage/ContractManage.vue') }, // /* 资源管理 ---> 合同管理 ---> 关联设备 */ { path: '/Equipment/resourceManage/components/relatedEquiment', name: 'relatedEquimentLink', component: () => import('@/views/Device/resourceManage/components/relatedEquiment.vue') }, // /* 资源管理 ---> 备品件管理 */ { path: '/Equipment/resourceManage/SpareManage', name: 'SpareManageLink', component: () => import('@/views/Device/resourceManage/SpareManage.vue') }, // /* 资源管理 ---> 备品库管理 */ { path: '/Equipment/resourceManage/SpareWarehouseManage', name: 'SpareWarehouseManageLink', component: () => import('@/views/Device/resourceManage/SpareWarehouseManage.vue') }, // /* 资源管理 ---> 区域管理 */ { path: '/Equipment/resourceManage/RegionManage', name: 'RegionManageLink', component: () => import('@/views/Device/resourceManage/RegionManage.vue') }, // /* 资源管理 ---> 采集任务 */ { path: '/Equipment/resourceManage/CollectionTask', name: 'CollectionTaskLink', component: () => import('@/views/Device/resourceManage/CollectionTask.vue') }, // /* 资源管理 ---> 采集任务 ---> 任务日志 */ { path: '/Equipment/resourceManage/components/LogQuery', name: 'LogQueryLink', component: () => import('@/views/Device/resourceManage/components/logQuery.vue') }, // /* 设备管理 ---> 设备管理 */ { path: '/Equipment/deviceManage/EquipmentManage', name: 'EquipmentManageLink', component: () => import('@/views/Device/deviceManage/EquipmentManage.vue') }, // /* 设备管理 ---> 设备管理 ---> 设备详情 */ { path: '/Equipment/deviceManage/components/EquipmentDetails', name: 'EquipmentDetailsLink', component: () => import('@/views/Device/deviceManage/components/EquipmentDetails/index.vue') }, // /* 设备管理 ---> 视频设施 */ { path: '/Equipment/deviceManage/VideoFacilities', name: 'VideoFacilitiesLink', component: () => import('@/views/Device/deviceManage/VideoFacilities.vue') }, // /* 设备管理 ---> 视频导入 */ { path: '/Equipment/deviceManage/videoImport', name: 'videoImportLink', component: () => import('@/views/Device/deviceManage/videoImport.vue') }, // /* 设备管理 ---> 对接设备监控 */ { path: '/Equipment/deviceManage/EquipmentMonitoring', name: 'EquipmentMonitoringLink', component: () => import('@/views/Device/deviceManage/EquipmentMonitoring.vue') }, // /* 设备管理 ---> 视频设施 ---> 视频详情 */ { path: '/Equipment/deviceManage/components/VideoDetails', name: 'VideoDetailsLink', component: () => import('@/views/Device/deviceManage/components/VideoDetails.vue') }, // /* 设备管理 ---> 产品管理 */ { path: '/Equipment/deviceManage/ProductManage', name: 'ProductManageLink', component: () => import('@/views/Device/deviceManage/ProductManage.vue') }, // /* 设备管理 ---> 产品管理 ---> 产品管理 */ { path: '/Equipment/deviceManage/ProductManage/ProductDetails', name: 'ProductDetailsLink', component: () => import('@/views/Device/deviceManage/components/ProductDetails.vue') }, // /* 设备管理 ---> 产品管理 */ { path: '/Equipment/deviceManage/GroupingManage', name: 'GroupingManageLink', component: () => import('@/views/Device/deviceManage/GroupingManage.vue') }, // /* 设备管理 ---> 产品分类 */ { path: '/Equipment/deviceManage/ProductType', name: 'ProductTypeLink', component: () => import('@/views/Device/deviceManage/ProductType.vue') }, // /* 设备监测 ---> 设备告警 */ { path: '/Equipment/deviceMonitor/deviceAlarm', name: 'deviceAlarmLink', component: () => import('@/views/Device/deviceMonitor/deviceAlarm.vue') }, // /* 设备监测 ---> 视频监控 */ { path: '/Equipment/deviceMonitor/VideoMonitor', name: 'VideoMonitorLink', component: () => import('@/views/Device/deviceMonitor/VideoMonitor.vue') }, // /* 设备管理 ---> 设备维护 */ { path: '/Equipment/deviceMonitor/EquipmentMaintain', name: 'EquipmentMaintainLink', component: () => import('@/views/Device/deviceMonitor/EquipmentMaintain.vue') }, // /* 设备管理 ---> 预警信息 */ { path: '/Equipment/deviceMonitor/EquipmentEventInfo', name: 'EquipmentEventInfoLink', component: () => import('@/views/Device/deviceMonitor/EquipmentEventInfo.vue') }, // /* 设备管理 ---> 设备管理 ---> 设备维护弹层 */ { path: '/Equipment/deviceMonitor/components/MaintainDetails', name: 'MaintainDetailsLink', component: () => import('@/views/Device/deviceMonitor/components/MaintainDetails.vue') }, // /* 运维考核 ---> 单位考核 */ { path: '/Equipment/operationCheck/UnitCheck', name: 'UnitCheckLink', component: () => import('@/views/Device/operationCheck/UnitCheck.vue') }, // /* 运维考核 ---> 合同考核 */ { path: '/Equipment/operationCheck/ContractCheck', name: 'ContractCheckLink', component: () => import('@/views/Device/operationCheck/ContractCheck.vue') }, // /* 运维考核 ---> 考核项目 */ { path: '/Equipment/operationCheck/CheckItem', name: 'CheckItemLink', component: () => import('@/views/Device/operationCheck/CheckItem.vue') }, // /* 危险源设备 ---> 实时监测 */ { path: '/Equipment/dangerousDevice/RealTimeMonitor', name: 'RealTimeMonitorLink', component: () => import('@/views/Device/dangerousDevice/RealTimeMonitor.vue') }, // /* 危险源设备 ---> 事件信息 */ { path: '/Equipment/dangerousDevice/EventInfo', name: 'EventInfoLink', component: () => import('@/views/Device/dangerousDevice/EventInfo.vue') }, // /* 危险源设备 ---> 统计分析 */ { path: '/Equipment/dangerousDevice/Analysis', name: 'AnalysisLink', component: () => import('@/views/Device/dangerousDevice/Analysis.vue') }, // /* 危险源设备 ---> 预警监控 */ { path: '/Equipment/dangerousDevice/EarlyWarningMonitoring', name: 'EarlyWarningMonitoringLink', component: () => import('@/views/Device/dangerousDevice/EarlyWarningMonitoring') }, // /* 危险源设备 ---> 设备维护 */ { path: '/Equipment/dangerousDevice/dangerousDeviceMaintenance', name: 'dangerousDeviceMaintenance', component: () => import('@/views/Device/deviceManage/EquipmentManage.vue') }, // /* 积水设备 ---> 实时监测 */ { path: '/Equipment/hydropsDevice/RealTimeMonitorHydrops', name: 'RealTimeMonitorHydropsLink', component: () => import('@/views/Device/hydropsDevice/RealTimeMonitorHydrops.vue') }, // /* 积水设备 ---> 事件信息 */ { path: '/Equipment/hydropsDevice/EventInfoHydrops', name: 'EventInfoHydropsLink', component: () => import('@/views/Device/hydropsDevice/EventInfoHydrops.vue') }, // /* 积水设备 ---> 统计分析 */ { path: '/Equipment/hydropsDevice/AnalysisHydrops', name: 'AnalysisHydropsLink', component: () => import('@/views/Device/hydropsDevice/AnalysisHydrops.vue') }, // /* 积水设备 ---> 预警监控 */ { path: '/Equipment/hydropsDevice/EarlyWarningMonitoringH', name: 'EarlyWarningMonitoringHLink', component: () => import('@/views/Device/hydropsDevice/EarlyWarningMonitoringH') }, // /* 积水设备 ---> 年度统计 */ { path: '/Equipment/hydropsDevice/hydropsYear', name: 'hydropsYearLink', component: () => import('@/views/Device/hydropsDevice/hydropsYear.vue') }, // /* 积水设备 ---> 设备维护 */ { path: '/Equipment/hydropsDevice/hydropsDeviceMaintenance', name: 'hydropsDeviceMaintenance', component: () => import('@/views/Device/deviceManage/EquipmentManage.vue') }, // /* 标识牌设备 ---> 实时监测 */ { path: '/Equipment/signboardDevice/RealTimeMonitorSignboard', name: 'RealTimeMonitorSignboardLink', component: () => import('@/views/Device/signboardDevice/RealTimeMonitorSignboard.vue') }, // /* 标识牌设备 ---> 事件信息 */ { path: '/Equipment/signboardDevice/EventInfoSignboard', name: 'EventInfoSignboardLink', component: () => import('@/views/Device/signboardDevice/EventInfoSignboard.vue') }, // /* 标识牌设备 ---> 统计分析 */ { path: '/Equipment/signboardDevice/AnalysisSignboard', name: 'AnalysisSignboardLink', component: () => import('@/views/Device/signboardDevice/AnalysisSignboard.vue') }, // /* 标识牌设备 ---> 预警监控 */ { path: '/Equipment/signboardDevice/EarlyWarningMonitoringS', name: 'EarlyWarningMonitoringSLink', component: () => import('@/views/Device/signboardDevice/EarlyWarningMonitoringS') }, // /* 标识牌设备 ---> 设备维护 */ { path: '/Equipment/signboardDevice/signboardDeviceMaintenance', name: 'signboardDeviceMaintenance', component: () => import('@/views/Device/deviceManage/EquipmentManage.vue') }, // /* 防爆路障 ---> 实时监测 */ { path: '/Equipment/riotBarricade/RealTimeMonitorBiot', name: 'RealTimeMonitorBiotLink', component: () => import('@/views/Device/riotBarricade/RealTimeMonitorBiot.vue') }, // /* 防爆路障 ---> 事件信息 */ { path: '/Equipment/riotBarricade/EventInfoRiot', name: 'EventInfoRiotLink', component: () => import('@/views/Device/riotBarricade/EventInfoRiot.vue') }, // /* 防爆路障 ---> 操控日志 */ { path: '/Equipment/riotBarricade/ControlLog', name: 'ControlLogLink', component: () => import('@/views/Device/riotBarricade/ControlLog.vue') }, // /* 防爆路障 ---> 路障设备 */ { path: '/Equipment/riotBarricade/BarricadeEquipment', name: 'BarricadeEquipmentLink', component: () => import('@/views/Device/riotBarricade/BarricadeEquipment/index.vue') }, // /* 防爆路障 ---> 统计分析 */ { path: '/Equipment/riotBarricade/AnalysisRiot', name: 'AnalysisRiotLink', component: () => import('@/views/Device/riotBarricade/AnalysisRiot.vue') }, // /* 防爆路障 ---> 设备维护 */ { path: '/Equipment/riotBarricade/riotBarricadeMaintenance', name: 'riotBarricadeMaintenance', component: () => import('@/views/Device/deviceManage/EquipmentManage.vue') }, // /* 性能分析 ---> 设备地图 */ // { // path: "/Equipment/performanceAnalysis/EquipmentMap", // name: "EquipmentMapLink", // component: () => import("@/views/Device/performanceAnalysis/EquipmentMap.vue") // }, // { // path: "/Equipment/performanceAnalysis/href/template/:alias", // name: "hrefLinK", // component: () => import("@/components/common/ComponentHref.vue") // }, // /* 性能分析 ---> 故障统计 */ { path: '/Equipment/performanceAnalysis/gztj', name: 'gztjLink', component: () => import('@/views/Device/performanceAnalysis/gztj.vue') }, // /* 性能分析 ---> 时长统计 */ { path: '/Equipment/performanceAnalysis/DurationAnalysis', name: 'DurationAnalysisLink', component: () => import('@/views/Device/performanceAnalysis/DurationAnalysis.vue') }, // /* 性能分析 ---> 健康分析 */ { path: '/Equipment/performanceAnalysis/HealthAnalysis', name: 'HealthAnalysisLink', component: () => import('@/views/Device/performanceAnalysis/HealthAnalysis.vue') }, // /* 性能分析 ---> 设备分析 */ { path: '/Equipment/performanceAnalysis/DeviceAnalysis', name: 'DeviceAnalysisLink', component: () => import('@/views/Device/EquipmentIndex.vue') }, // /* 设备统计---设备 */ { path: '/Equipment/performanceAnalysis/devicePage', name: 'DevicePageLink', component: () => import('@/views/Device/components/devicePage.vue') }, // /* 设备统计---设备详情 */ { path: '/Equipment/performanceAnalysis/deviceDetails', name: 'DeviceDetailsLink', component: () => import('@/views/Device/components/deviceDetails.vue') }, // /* 设备统计---监控 */ { path: '/Equipment/performanceAnalysis/monitorPage', name: 'MonitorPageLink', component: () => import('@/views/Device/components/monitorPage.vue') }, // /* 性能分析 ---> 报警分析 */ { path: '/Equipment/performanceAnalysis/AlarmAnalysis', name: 'AlarmAnalysisLink', component: () => import('@/views/Device/performanceAnalysis/AlarmAnalysis.vue') }, // /* 资源巡检 ---> 巡检假话 */ { path: '/Equipment/resourceInspection/dailyInspection', name: 'dailyInspectionLink', component: () => import('@/views/Device/ResourceInspection/DailyInspection') }, // /* 资源巡检 ---> 巡检台账 */ { path: '/Equipment/resourceInspection/inspectionLedger', name: 'inspectionLedgerLink', component: () => import('@/views/Device/ResourceInspection/InspectionLedger') }, // /* 资源巡检 ---> 日常巡检 */ { path: '/Equipment/resourceInspection/routineInspection', name: 'routineInspectionLink', component: () => import('@/views/Device/ResourceInspection/RoutineInspection') }, // /* 资源巡检 ---> 特殊巡检 */ { path: '/Equipment/resourceInspection/specialInspection', name: 'specialInspectionLink', component: () => import('@/views/Device/ResourceInspection/SpecialInspection') }, // /* 资源巡检 ---> 巡检结果分析 */ { path: '/Equipment/resourceInspection/analysisInspectionResults', name: 'analysisInspectionResultsLink', component: () => import('@/views/Device/ResourceInspection/AnalysisInspectionResults') }, // /* 资源巡检 ---> 工单信息 */ { path: '/Equipment/resourceInspection/workOrderInformation', name: 'workOrderInformationLink', component: () => import('@/views/Device/ResourceInspection/WorkOrderInformation') }, // /* 资源巡检 ---> 维护维修 */ { path: '/Equipment/resourceInspection/maintenanceRepair', name: 'maintenanceRepairLink', component: () => import('@/views/Device/ResourceInspection/MaintenanceRepair') }, // /* 资源巡检 ---> 工单分析 */ { path: '/Equipment/resourceInspection/workOrderAnalysis', name: 'workOrderAnalysisLink', component: () => import('@/views/Device/ResourceInspection/WorkOrderAnalysis') }, // /* 资源巡检 ---> 巡检计划 */ { path: '/Equipment/resourceInspection/EquipmentInspectionPlan', name: 'EquipmentInspectionPlan', component: () => import('@/views/Device/ResourceInspection/EquipmentInspectionPlan') }, // /* 资源巡检 ---> 巡检任务 */ { path: '/Equipment/resourceInspection/DeviceInspectionTask', name: 'DeviceInspectionTask', component: () => import('@/views/Device/ResourceInspection/DeviceInspectionTask') }, // /* 资源巡检 ---> 巡检结果 */ { path: '/Equipment/resourceInspection/DeviceInspectionResult', name: 'DeviceInspectionResult', component: () => import('@/views/Device/ResourceInspection/DeviceInspectionResult') } ]