fix(fe): fix sidebar router links, shrink header height to 44px, and refine workspace tabs UI
This commit is contained in:
@@ -28,53 +28,59 @@ const expandedSections = ref(new Set<string>())
|
||||
const menuItems: MenuItem[] = [
|
||||
{
|
||||
id: 'dashboard',
|
||||
label: '대시보드',
|
||||
label: '대시보드 (홈)',
|
||||
icon: '📊',
|
||||
path: '/',
|
||||
path: '/home',
|
||||
},
|
||||
{
|
||||
id: 'shadow-run',
|
||||
label: 'Shadow Run',
|
||||
icon: '⚡',
|
||||
path: '/shadow-run/queue',
|
||||
path: '/model-ops/shadow-run-jobs',
|
||||
children: [
|
||||
{ id: 'sr-queue', label: '작업 큐', icon: '📋', path: '/shadow-run/queue' },
|
||||
{ id: 'sr-history', label: '실행 이력', icon: '📜', path: '/shadow-run/history' },
|
||||
{ id: 'sr-settings', label: '설정', icon: '⚙️', path: '/shadow-run/settings' },
|
||||
{ id: 'sr-queue', label: '작업 큐', icon: '📋', path: '/model-ops/shadow-run-jobs' },
|
||||
{ id: 'sr-history', label: '실행 검증', icon: '📜', path: '/model-ops/shadow-runs' },
|
||||
{ id: 'sr-settings', label: '데이터 품질', icon: '⚙️', path: '/ops/data-quality' },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'models',
|
||||
label: '모델',
|
||||
label: '모델 관리',
|
||||
icon: '🤖',
|
||||
path: '/models/list',
|
||||
path: '/model-ops/models-master',
|
||||
children: [
|
||||
{ id: 'models-list', label: '모델 목록', icon: '📂', path: '/models/list' },
|
||||
{ id: 'models-detail', label: '상세 분석', icon: '🔍', path: '/models/detail' },
|
||||
{ id: 'models-compare', label: '비교 분석', icon: '⚖️', path: '/models/compare' },
|
||||
{ id: 'models-list', label: '모델 마스터-상세', icon: '📂', path: '/model-ops/models-master' },
|
||||
{ id: 'models-ops', label: '모델 버전 거버넌스', icon: '🔍', path: '/ops/model-operations' },
|
||||
{ id: 'models-compare', label: '모델 관리', icon: '⚖️', path: '/model-ops/models' },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'approval',
|
||||
label: '승인',
|
||||
label: '승인 워크벤치',
|
||||
icon: '✅',
|
||||
path: '/approval/queue',
|
||||
path: '/governance/approvals',
|
||||
children: [
|
||||
{ id: 'apr-queue', label: '승인 큐', icon: '📋', path: '/approval/queue' },
|
||||
{ id: 'apr-history', label: '승인 이력', icon: '✔️', path: '/approval/history' },
|
||||
{ id: 'apr-queue', label: '승인 큐', icon: '📋', path: '/governance/approvals' },
|
||||
{ id: 'apr-sell', label: '매도 의사결정', icon: '💵', path: '/research/sell-decision' },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'reports',
|
||||
label: '보고서',
|
||||
id: 'portfolio',
|
||||
label: '포트폴리오',
|
||||
icon: '📈',
|
||||
path: '/reports/daily',
|
||||
path: '/portfolio/risk',
|
||||
children: [
|
||||
{ id: 'rep-daily', label: '일일 보고서', icon: '📄', path: '/reports/daily' },
|
||||
{ id: 'rep-weekly', label: '주간 보고서', icon: '📋', path: '/reports/weekly' },
|
||||
{ id: 'rep-export', label: '내보내기', icon: '💾', path: '/reports/export' },
|
||||
{ id: 'port-risk', label: '리스크 대시보드', icon: '🛡️', path: '/portfolio/risk' },
|
||||
{ id: 'port-rebalance', label: '리밸런싱 제안', icon: '⚖️', path: '/portfolio/rebalance' },
|
||||
{ id: 'market-data', label: '시장 데이터 수집', icon: '💾', path: '/ops/market-data-ingestion' },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'ui-catalog',
|
||||
label: 'UI 컴포넌트 갤러리',
|
||||
icon: '🎨',
|
||||
path: '/internal/ui-standard',
|
||||
},
|
||||
]
|
||||
|
||||
const isActive = (path: string) => route.path === path
|
||||
|
||||
Reference in New Issue
Block a user