feat(ctrt): 完成 CTRT-01~03 响应契约统一 - 三端拦截器+portal_token清理+调用点适配

This commit is contained in:
Simon
2026-07-07 22:56:49 +08:00
parent d56a9a6079
commit 6f0fbbb066
48 changed files with 6183 additions and 613 deletions
+21
View File
@@ -160,6 +160,27 @@ const routes = [
component: () => import('@/views/KnowledgeSuggestions.vue'),
meta: { title: '知识库建议', requiresAuth: true },
},
{
// 阶段5 自动化闭环 — 场景配置
path: 'automation-scenarios',
name: 'AutomationScenarios',
component: () => import('@/views/automation/ScenarioConfig.vue'),
meta: { title: '自动化场景', requiresAuth: true },
},
{
// 阶段5 自动化闭环 — 规则版本/灰度
path: 'automation-versions',
name: 'AutomationVersions',
component: () => import('@/views/automation/RuleVersion.vue'),
meta: { title: '规则版本', requiresAuth: true },
},
{
// 阶段5 自动化闭环 — 指标看板
path: 'automation-metrics',
name: 'AutomationMetrics',
component: () => import('@/views/dashboard/AutoMetrics.vue'),
meta: { title: '自动化指标', requiresAuth: true },
},
],
},
{