refactor(web): 移除独立算法配置页面

- 注释掉 /algorithmConfig 路由
- 算法调配功能已集成到摄像头配置的 ROI 选区中
- ROI配置页面通过 RoiAlgorithmBind 组件支持完整的算法绑定

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-05 14:30:25 +08:00
parent b6dc39a021
commit 826586b921

View File

@@ -250,17 +250,18 @@ export const constantRoutes = [
}
]
},
{
path: '/algorithmConfig',
component: Layout,
redirect: '/algorithmConfig',
children: [{
path: '',
name: 'AlgorithmConfig',
component: () => import('@/views/algorithmConfig/index'),
meta: { title: '算法配置', icon: 'algorithm' }
}]
},
// 算法配置已集成到摄像头配置的 ROI 选区中,不再单独展示
// {
// path: '/algorithmConfig',
// component: Layout,
// redirect: '/algorithmConfig',
// children: [{
// path: '',
// name: 'AlgorithmConfig',
// component: () => import('@/views/algorithmConfig/index'),
// meta: { title: '算法配置', icon: 'algorithm' }
// }]
// },
{
path: '/user',
component: Layout,