9.1 电子评标室统一路由和模块
This commit is contained in:
71
config/router_elecEvaluation.ts
Normal file
71
config/router_elecEvaluation.ts
Normal file
@ -0,0 +1,71 @@
|
||||
export const monitorScreen = [
|
||||
//监控大屏
|
||||
{
|
||||
path: '/ElecMonitorScreen',
|
||||
routes: [
|
||||
{//监控大屏-首页
|
||||
path: '/ElecMonitorScreen/Home',
|
||||
component: './ElecEvaluation/MonitorScreen/Home',
|
||||
},
|
||||
{//监控大屏-评标室列表页
|
||||
path: '/ElecMonitorScreen/MonitorRoom',
|
||||
component: './ElecEvaluation/MonitorScreen/MonitorRoom',
|
||||
},
|
||||
{//监控大屏-评标室详情
|
||||
path: '/ElecMonitorScreen/ProjectMonitorRoom',
|
||||
component: './ElecEvaluation/MonitorScreen/ProjectMonitorRoom',
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
export const elecBidEvaluation = [
|
||||
{
|
||||
path: '/ElecEvaluation',
|
||||
routes: [
|
||||
//在线监督和事后监督
|
||||
{
|
||||
path: '/ElecEvaluation/VideoMonitor',
|
||||
routes: [
|
||||
{
|
||||
path: '/ElecEvaluation/VideoMonitor/Online',
|
||||
component: './ElecEvaluation/VideoMonitor/Online',
|
||||
},
|
||||
{
|
||||
path: '/ElecEvaluation/VideoMonitor/Post',
|
||||
component: './ElecEvaluation/VideoMonitor/Post',
|
||||
},
|
||||
],
|
||||
},
|
||||
{//异常告警
|
||||
path: '/ElecEvaluation/AbnormalAlarm',
|
||||
component: './ElecEvaluation/AbnormalAlarm'
|
||||
},
|
||||
{//设备管理
|
||||
path: '/ElecEvaluation/Device',
|
||||
component: './ElecEvaluation/Device',
|
||||
},
|
||||
{//评标现场管理
|
||||
path: '/ElecEvaluation/EvalSiteManage',
|
||||
routes: [
|
||||
{//评标现场管理->评标场所人员维护
|
||||
path: '/ElecEvaluation/EvalSiteManage/SitePerson',
|
||||
component: './ElecEvaluation/EvalSiteManage/SitePerson'
|
||||
},
|
||||
{//评标现场管理->人员报道情况查询
|
||||
path: '/ElecEvaluation/EvalSiteManage/PersonReport',
|
||||
component: './ElecEvaluation/EvalSiteManage/PersonReport'
|
||||
},
|
||||
],
|
||||
},
|
||||
{//评标室预约情况
|
||||
path: '/ElecEvaluation/AppointmentManage',
|
||||
component: './ElecEvaluation/AppointmentManage',
|
||||
},
|
||||
{//评标室查看预约
|
||||
path: '/ElecEvaluation/ElecEvalReserve',
|
||||
component: './ElecEvaluation/ElecEvalReserve',
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
Reference in New Issue
Block a user