From 585f426f0bb1bc390738870402ffd523ed2aacda Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Thu, 2 Jul 2026 17:23:46 +0900 Subject: [PATCH] Stabilize admin navigation shell --- TaxBaik.Web/Components/Admin/App.razor | 20 +++++++---- .../Components/Admin/Layout/MainLayout.razor | 1 - .../Components/Admin/Shared/AdminShell.razor | 35 +++++++++++-------- 3 files changed, 34 insertions(+), 22 deletions(-) diff --git a/TaxBaik.Web/Components/Admin/App.razor b/TaxBaik.Web/Components/Admin/App.razor index b8c78ab..2598acc 100644 --- a/TaxBaik.Web/Components/Admin/App.razor +++ b/TaxBaik.Web/Components/Admin/App.razor @@ -38,12 +38,20 @@ - - - - - - + + + + diff --git a/TaxBaik.Web/Components/Admin/Layout/MainLayout.razor b/TaxBaik.Web/Components/Admin/Layout/MainLayout.razor index 11d1ac8..9ce4f48 100644 --- a/TaxBaik.Web/Components/Admin/Layout/MainLayout.razor +++ b/TaxBaik.Web/Components/Admin/Layout/MainLayout.razor @@ -1,5 +1,4 @@ @inherits LayoutComponentBase -@rendermode @(new InteractiveWebAssemblyRenderMode(prerender: false)) diff --git a/TaxBaik.Web/Components/Admin/Shared/AdminShell.razor b/TaxBaik.Web/Components/Admin/Shared/AdminShell.razor index 86beead..1d78a5d 100644 --- a/TaxBaik.Web/Components/Admin/Shared/AdminShell.razor +++ b/TaxBaik.Web/Components/Admin/Shared/AdminShell.razor @@ -57,27 +57,27 @@ - 대시보드 + 대시보드 - 세무 프로필 - 신고 일정 - 계약 관리 - 상담 활동 - 수익 추적 + 세무 프로필 + 신고 일정 + 계약 관리 + 상담 활동 + 수익 추적 - 고객 카드 - 세무신고 + 고객 카드 + 세무신고 - 공지사항 - FAQ 관리 - 블로그 관리 - 시즌 시뮬레이터 + 공지사항 + FAQ 관리 + 블로그 관리 + 시즌 시뮬레이터 - 문의 관리 - 설정 - 공통관리 + 문의 관리 + 설정 + 공통관리
Version
@@ -130,6 +130,11 @@ _ = JS.InvokeVoidAsync("taxbaikAdminSession.traceUiState", "admin-shell", drawerOpen ? "drawer opened" : "drawer closed"); } + private void NavigateTo(string url) + { + Navigation.NavigateTo(url); + } + public void Dispose() { Navigation.LocationChanged -= OnLocationChanged;