diff --git a/ui/src/layout/components/sidebar/index.vue b/ui/src/layout/components/sidebar/index.vue index a74d8bd2e..54e5c5947 100644 --- a/ui/src/layout/components/sidebar/index.vue +++ b/ui/src/layout/components/sidebar/index.vue @@ -12,35 +12,35 @@ style="display: block; padding: 10px 16px; border-radius: 8px; text-decoration: none; color: #333; font-size: 14px;" :style="activeMainMenu === '/application' ? { backgroundColor: '#e6f0ff', color: '#1890ff' } : {}" > - AI应用 + {{ menuText.aiApplication }} - 思维导图 + {{ menuText.mindmap }} - 知识库 + {{ menuText.knowledge }} - 工具管理 + {{ menuText.toolManagement }} - 模型管理 + {{ menuText.modelManagement }} @@ -50,7 +50,7 @@ style="display: block; padding: 10px 16px; border-radius: 8px; text-decoration: none; color: #333; font-size: 14px;" :style="activeSystemMenu === '/system/user' ? { backgroundColor: '#e6f0ff', color: '#1890ff' } : {}" > - 用户管理 + {{ menuText.userManagement }}
@@ -59,7 +59,7 @@ :style="activeSystemMenu.startsWith('/system/authorization') ? { backgroundColor: '#e6f0ff', color: '#1890ff' } : {}" @click="toggleResourceAuth" > - 资源授权 + {{ menuText.resourceAuthorization }} {{ resourceAuthExpanded ? '▾' : '▸' }}
- AI应用 + {{ menuText.aiApplication }} - 知识库 + {{ menuText.knowledge }} - 工具管理 + {{ menuText.toolManagement }} - 模型管理 + {{ menuText.modelManagement }}
@@ -103,7 +103,7 @@ :style="activeSystemMenu.startsWith('/system/email') ? { backgroundColor: '#e6f0ff', color: '#1890ff' } : {}" @click="toggleSystemSettings" > - 系统设置 + {{ menuText.systemSettings }} {{ systemSettingsExpanded ? '▾' : '▸' }}
- 邮件设置 + {{ menuText.emailSettings }}
@@ -131,9 +131,51 @@