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.
158 lines
4.1 KiB
158 lines
4.1 KiB
export default [
|
|
{
|
|
title: "首页",
|
|
name: "home",
|
|
position: "left",
|
|
path: "/home",
|
|
component: "Home/index.vue",
|
|
},
|
|
{
|
|
title: "路段感知",
|
|
name: "perception",
|
|
position: "left",
|
|
path: "/perception",
|
|
redirect: "",
|
|
children: [
|
|
{
|
|
title: "感知事件监测",
|
|
path: "/perception/eventDetection",
|
|
name: "perceptionEventDetection",
|
|
component: "perception/eventDetection/index.vue",
|
|
},
|
|
{
|
|
title: "交通流检测",
|
|
path: "/perception/trafficFlow",
|
|
name: "perceptionTrafficFlow",
|
|
component: "perception/trafficFlow/index.vue",
|
|
},
|
|
{
|
|
title: "交通气象监测",
|
|
path: "/perception/meteorologyCheck",
|
|
name: "perceptionMeteorologyCheck",
|
|
component: "perception/meteorologyCheck/index.vue",
|
|
},
|
|
{
|
|
title: "交通态势分析",
|
|
path: "/perception/trafficSituation",
|
|
name: "perceptionTrafficSituation",
|
|
component: "perception/trafficSituation/index.vue",
|
|
}
|
|
],
|
|
},
|
|
{
|
|
title: "路网管控",
|
|
name: "control",
|
|
path: "/control",
|
|
position: "left",
|
|
redirect: "controlEvent",
|
|
children: [
|
|
{
|
|
title: "事件管控",
|
|
name: "controlEvent",
|
|
path: "/control/event",
|
|
redirect: "controlEventPerception",
|
|
children: [
|
|
{
|
|
title: "调度记录",
|
|
path: "/control/event/dispatch",
|
|
name: "controlEventDispatch",
|
|
component: "control/event/dispatch/index.vue",
|
|
},
|
|
{
|
|
title: "感知事件",
|
|
path: "/control/event/event",
|
|
name: "controlEventEvent",
|
|
component: "control/event/event/index.vue",
|
|
},
|
|
{
|
|
title: "协调调度记录",
|
|
path: "/control/event/coordinateSchedulingRecords",
|
|
name: "coordinateSchedulingRecords",
|
|
component: "control/event/coordinateSchedulingRecords/index.vue",
|
|
},
|
|
{
|
|
title: "业务数据管理",
|
|
path: "/control/event/businessDataManagement",
|
|
name: "businessDataManagement",
|
|
component: "control/event/businessDataManagement/index.vue",
|
|
},
|
|
{
|
|
title: "应急过程管理",
|
|
path: "/control/event/emergencyProcessManagement",
|
|
name: "emergencyProcessManagement",
|
|
component: "control/event/emergencyProcessManagement/index.vue",
|
|
},
|
|
{
|
|
title: "指挥调度",
|
|
path: "/control/event/commandDispatch",
|
|
name: "commandDispatch",
|
|
component: "control/event/commandDispatch/index.vue",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "养护运营",
|
|
name: "maintain",
|
|
position: "left",
|
|
path: "/maintain",
|
|
component: "developing.vue",
|
|
},
|
|
{
|
|
title: "公众服务",
|
|
name: "service",
|
|
position: "right",
|
|
path: "/service",
|
|
redirect: "serviceBoard",
|
|
children: [
|
|
{
|
|
title: "情报板",
|
|
name: "serviceBoard",
|
|
path: "/service/board",
|
|
component: "service/board/index.vue",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "数据可视化",
|
|
name: "datav",
|
|
position: "right",
|
|
path: "/datav",
|
|
redirect: "digitalTollStation",
|
|
children: [
|
|
// {
|
|
// title: "数字路网",
|
|
// name: "digitalRoadNetwork",
|
|
// path: "/datav/digitalRoadNetwork",
|
|
// component: "datav/digitalRoadNetwork/index.vue",
|
|
// },
|
|
{
|
|
title: "数字收费站",
|
|
name: "digitalTollStation",
|
|
path: "/datav/digitalTollStation",
|
|
component: "datav/digitalTollStation/index.vue",
|
|
},
|
|
{
|
|
title: "GIS+BIM可视化",
|
|
name: "gisAndBim",
|
|
path: "/datav/gisAndBim",
|
|
component: "datav/gisAndBim/index.vue",
|
|
},
|
|
]
|
|
},
|
|
{
|
|
title: "配置中心",
|
|
name: "config",
|
|
position: "right",
|
|
path: "/config",
|
|
component: "developing.vue",
|
|
},
|
|
{
|
|
title: "系统管理",
|
|
name: "system",
|
|
position: "right",
|
|
path: "/system",
|
|
component: "developing.vue",
|
|
},
|
|
];
|
|
|