From 8c1a0d785ca5503000e558e44199751adf28442e Mon Sep 17 00:00:00 2001 From: caoxiaozhu Date: Mon, 13 Jul 2026 16:43:37 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=A8=A1=E5=9E=8B=E5=BE=AE=E8=B0=83?= =?UTF-8?q?=E6=9B=B4=E5=90=8D=E4=B8=BA=E6=A8=A1=E5=9E=8B=E8=AE=AD=E7=BB=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 侧边栏菜单标签与路由标题统一由模型微调改为模型训练。 --- frontend/src/components/AppSidebar.vue | 2 +- frontend/src/router/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/AppSidebar.vue b/frontend/src/components/AppSidebar.vue index d6ec291..af5fa6b 100644 --- a/frontend/src/components/AppSidebar.vue +++ b/frontend/src/components/AppSidebar.vue @@ -36,7 +36,7 @@ const menuGroups = [ { title: '模型服务', items: [ - { key: 'fine-tune', label: '模型微调', icon: 'fa-cogs', to: '/fine-tune' }, + { key: 'fine-tune', label: '模型训练', icon: 'fa-cogs', to: '/fine-tune' }, { key: 'model-eval', label: '模型评测', icon: 'fa-line-chart', to: '/model-eval' }, { key: 'model-inference', label: '模型推理', icon: 'fa-server', to: '/model-inference' }, { key: 'model-manage', label: '模型管理', icon: 'fa-cube', to: '/model-manage' }, diff --git a/frontend/src/router/index.ts b/frontend/src/router/index.ts index 15f1cbb..7afd835 100644 --- a/frontend/src/router/index.ts +++ b/frontend/src/router/index.ts @@ -25,7 +25,7 @@ const routes: RouteRecordRaw[] = [ path: 'fine-tune', name: 'fine-tune', component: () => import('@/views/fine-tune/FineTuneListView.vue'), - meta: { title: '模型微调', pageSurface: 'self' }, + meta: { title: '模型训练', pageSurface: 'self' }, }, { path: 'fine-tune/create',