124 lines
4.5 KiB
TypeScript
124 lines
4.5 KiB
TypeScript
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 monitor = [
|
|
//监控
|
|
{
|
|
path: '/ElecMonitor',
|
|
routes: [
|
|
{//监控首页
|
|
path: '/ElecMonitor/Home',
|
|
component: './ElecEvaluation/Monitor/Home',
|
|
},
|
|
{//异常监控
|
|
path: '/ElecMonitor/Exception',
|
|
component: './ElecEvaluation/Monitor/Exception',
|
|
},
|
|
{//招标代理机构概况
|
|
path: '/ElecMonitor/TenderAgent',
|
|
component: './ElecEvaluation/Monitor/TenderAgent',
|
|
},
|
|
{//供应商概况
|
|
path: '/ElecMonitor/Supplier',
|
|
component: './ElecEvaluation/Monitor/Supplier',
|
|
},
|
|
{//今日开标
|
|
path: '/ElecMonitor/OpenToday',
|
|
component: './ElecEvaluation/Monitor/OpenToday',
|
|
},
|
|
{//评标室监控-列表
|
|
path: '/ElecMonitor/Room',
|
|
component: './ElecEvaluation/Monitor/Room',
|
|
},
|
|
{//评标室监控-详情
|
|
path: '/ElecMonitor/RoomDetail',
|
|
component: './ElecEvaluation/Monitor/RoomDetail',
|
|
},
|
|
],
|
|
},
|
|
]
|
|
|
|
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/DeviceManage',
|
|
component: './ElecEvaluation/DeviceManage',
|
|
},
|
|
{//评标现场管理
|
|
path: '/ElecEvaluation/EvalSiteManage',
|
|
routes: [
|
|
{//评标现场管理->评标场所人员维护
|
|
path: '/ElecEvaluation/EvalSiteManage/SitePerson',
|
|
component: './ElecEvaluation/EvalSiteManage/SiteUser'
|
|
},
|
|
{//评标现场管理->人员报道情况查询
|
|
path: '/ElecEvaluation/EvalSiteManage/PersonReport',
|
|
component: './ElecEvaluation/EvalSiteManage/PersonReport'
|
|
},
|
|
],
|
|
},
|
|
{//评标室预约情况
|
|
path: '/ElecEvaluation/AppointmentManage',
|
|
component: './ElecEvaluation/AppointmentManage',
|
|
},
|
|
{//评标室查看预约
|
|
path: '/ElecEvaluation/ElecEvalReserve',
|
|
component: './ElecEvaluation/ElecEvalReserve',
|
|
},
|
|
{//预约人员-我的预约
|
|
path: '/ElecEvaluation/MyReserve',
|
|
component: './ElecEvaluation/ElecEvalReserve/MyReserve',
|
|
},
|
|
{//评标场所及区域管理
|
|
path: '/ElecEvaluation/PlaceAreasManage',
|
|
component: './ElecEvaluation/PlaceAreasManage',
|
|
},
|
|
{//厂家平台管理
|
|
path: '/ElecEvaluation/ManuPlatformManage',
|
|
component: './ElecEvaluation/ManuPlatformManage',
|
|
},
|
|
],
|
|
},
|
|
] |