From 826586b9214c8a54d5a84c0b1abdfec24bce09ab Mon Sep 17 00:00:00 2001 From: 16337 <1633794139@qq.com> Date: Thu, 5 Feb 2026 14:30:25 +0800 Subject: [PATCH] =?UTF-8?q?refactor(web):=20=E7=A7=BB=E9=99=A4=E7=8B=AC?= =?UTF-8?q?=E7=AB=8B=E7=AE=97=E6=B3=95=E9=85=8D=E7=BD=AE=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 注释掉 /algorithmConfig 路由 - 算法调配功能已集成到摄像头配置的 ROI 选区中 - ROI配置页面通过 RoiAlgorithmBind 组件支持完整的算法绑定 Co-Authored-By: Claude Opus 4.5 --- web/src/router/index.js | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/web/src/router/index.js b/web/src/router/index.js index c39b7c45c..ab3f885dd 100644 --- a/web/src/router/index.js +++ b/web/src/router/index.js @@ -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,