Fix: Optimize the style of the personal center sidebar component #9869 (#10723)

### What problem does this PR solve?

fix: Optimize the style of the personal center sidebar component

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
chanx
2025-10-22 16:55:16 +08:00
committed by GitHub
parent 4d1255b231
commit 318cb7d792
14 changed files with 784 additions and 127 deletions

View File

@ -18,9 +18,11 @@ export enum Routes {
Files = '/files',
ProfileSetting = '/profile-setting',
Profile = '/profile',
Api = '/api',
Mcp = '/mcp',
Team = '/team',
Plan = '/plan',
System = '/system',
Model = '/model',
Prompt = '/prompt',
ProfileMcp = `${ProfileSetting}${Mcp}`,
@ -362,7 +364,7 @@ const routes = [
{
path: '/user-setting/profile',
// component: '@/pages/user-setting/setting-profile',
component: '@/pages/user-setting/setting-profile',
component: '@/pages/user-setting/profile',
},
{
path: '/user-setting/locale',
@ -381,11 +383,11 @@ const routes = [
component: '@/pages/user-setting/setting-team',
},
{
path: '/user-setting/system',
path: `/user-setting${Routes.System}`,
component: '@/pages/user-setting/setting-system',
},
{
path: '/user-setting/api',
path: `/user-setting${Routes.Api}`,
component: '@/pages/user-setting/setting-api',
},
{