From 50adc24979dcfa66aad0e9ea872cc6bbf3c281b8 Mon Sep 17 00:00:00 2001 From: QDKF Date: Sat, 20 Sep 2025 14:35:59 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B0=83=E6=95=B4=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.ts | 36 +++++++-------- src/views/teacher/AdminDashboard.vue | 46 +++++++++---------- .../aiapp/AiAppList.vue} | 0 .../aiflow/AiFlowDesign.vue} | 0 .../aiknowledge/AiKnowledgeBaseList.vue} | 2 +- .../aimodel/AiModelConfig.vue} | 0 .../{ai-orchestration => airag}/index.vue | 6 +-- .../ocr/AiOcrList.vue} | 0 8 files changed, 45 insertions(+), 45 deletions(-) rename src/views/teacher/{ai-orchestration/app-management.vue => airag/aiapp/AiAppList.vue} (100%) rename src/views/teacher/{ai-orchestration/process-design.vue => airag/aiflow/AiFlowDesign.vue} (100%) rename src/views/teacher/{ai-orchestration/knowledge-base.vue => airag/aiknowledge/AiKnowledgeBaseList.vue} (99%) rename src/views/teacher/{ai-orchestration/model-config.vue => airag/aimodel/AiModelConfig.vue} (100%) rename src/views/teacher/{ai-orchestration => airag}/index.vue (95%) rename src/views/teacher/{ai-orchestration/ocr-recognition.vue => airag/ocr/AiOcrList.vue} (100%) diff --git a/src/router/index.ts b/src/router/index.ts index 2c0f5b4..bd17069 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -366,39 +366,39 @@ const routes: RouteRecordRaw[] = [ meta: { title: '查看详情' } }, { - path: 'ai-orchestration', - name: 'AIOrchestration', - component: () => import('@/views/teacher/ai-orchestration/index.vue'), + path: 'airag', + name: 'AIRag', + component: () => import('@/views/teacher/airag/index.vue'), meta: { title: '智能体编排' } }, { - path: 'ai-orchestration/app-management', - name: 'AIAppManagement', - component: () => import('@/views/teacher/ai-orchestration/app-management.vue'), + path: 'airag/aiapp', + name: 'AIApp', + component: () => import('@/views/teacher/airag/aiapp/AiAppList.vue'), meta: { title: 'AI应用管理' } }, { - path: 'ai-orchestration/knowledge-base', - name: 'AIKnowledgeBase', - component: () => import('@/views/teacher/ai-orchestration/knowledge-base.vue'), + path: 'airag/aiknowledge', + name: 'AIKnowledge', + component: () => import('@/views/teacher/airag/aiknowledge/AiKnowledgeBaseList.vue'), meta: { title: 'AI知识库' } }, { - path: 'ai-orchestration/process-design', - name: 'AIProcessDesign', - component: () => import('@/views/teacher/ai-orchestration/process-design.vue'), + path: 'airag/aiflow', + name: 'AIFlow', + component: () => import('@/views/teacher/airag/aiflow/AiFlowDesign.vue'), meta: { title: 'AI流程设计' } }, { - path: 'ai-orchestration/model-config', - name: 'AIModelConfig', - component: () => import('@/views/teacher/ai-orchestration/model-config.vue'), + path: 'airag/aimodel', + name: 'AIModel', + component: () => import('@/views/teacher/airag/aimodel/AiModelConfig.vue'), meta: { title: 'AI模型配置' } }, { - path: 'ai-orchestration/ocr-recognition', - name: 'AIOCRRecognition', - component: () => import('@/views/teacher/ai-orchestration/ocr-recognition.vue'), + path: 'airag/ocr', + name: 'AIOCR', + component: () => import('@/views/teacher/airag/ocr/AiOcrList.vue'), meta: { title: 'OCR识别' } }, { diff --git a/src/views/teacher/AdminDashboard.vue b/src/views/teacher/AdminDashboard.vue index 87c2d72..0569b77 100644 --- a/src/views/teacher/AdminDashboard.vue +++ b/src/views/teacher/AdminDashboard.vue @@ -118,23 +118,23 @@