--添加测试模块

This commit is contained in:
2025-10-13 11:53:54 +08:00
parent c3c93fe308
commit e1326c7ce8
146 changed files with 11171 additions and 807 deletions

View File

@ -226,3 +226,21 @@ export const FLOW_ROUTE: AppRouteRecordRaw[] = [{
}
]
}];
export const PROCESS_MONITORING: AppRouteRecordRaw[] = [{
path: '/processMonitoring/:arg1/:arg2',
name: 'ProcessMonitoring',
meta: {
title: '流程监控'
},
component: LAYOUT,
children: [
{
path: 'processMonitoringFlow',
name: 'ProcessMonitoringFlow',
component: () => import('/@/views/secondDev/processMonitoringPage.vue'),
meta: {
title: (route) => '流程监控'
}
},
]
}]