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.
119 lines
3.0 KiB
119 lines
3.0 KiB
1 year ago
|
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: "路网管控",
|
||
|
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: "养护运营",
|
||
|
name: "maintain",
|
||
|
position: "left",
|
||
|
path: "/maintain",
|
||
|
component: "developing.vue",
|
||
|
},
|
||
|
{
|
||
|
title: "公众服务",
|
||
|
name: "service",
|
||
|
position: "right",
|
||
|
path: "/service",
|
||
|
component: "developing.vue",
|
||
|
},
|
||
|
{
|
||
|
title: "数据可视化",
|
||
|
name: "datav",
|
||
|
position: "right",
|
||
|
path: "/datav",
|
||
|
component: "developing.vue",
|
||
|
},
|
||
|
{
|
||
|
title: "配置中心",
|
||
|
name: "config",
|
||
|
position: "right",
|
||
|
path: "/config",
|
||
|
component: "developing.vue",
|
||
|
},
|
||
|
{
|
||
|
title: "系统管理",
|
||
|
name: "system",
|
||
|
position: "right",
|
||
|
path: "/system",
|
||
|
component: "developing.vue",
|
||
|
},
|
||
|
];
|