dev #1

Merged
caoxiaozhu merged 8 commits from dev into main 2026-07-14 11:26:14 +08:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 8c1a0d785c - Show all commits

View File

@@ -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' },

View File

@@ -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',