diff --git a/app/Views/admin/layout.php b/app/Views/admin/layout.php index 54454ff..54894cc 100644 --- a/app/Views/admin/layout.php +++ b/app/Views/admin/layout.php @@ -102,7 +102,7 @@ tailwind.config = {
- base_url('admin')]) ?> + base_url('/')]) ?>
diff --git a/app/Views/bag/layout/workspace.php b/app/Views/bag/layout/workspace.php index 1efe3f9..30ae5a1 100644 --- a/app/Views/bag/layout/workspace.php +++ b/app/Views/bag/layout/workspace.php @@ -374,6 +374,14 @@ if ($effectiveLgIdx) { var closeAllBtn = document.getElementById('wsCloseAll'); if (closeAllBtn) closeAllBtn.addEventListener('click', closeAllTabs); + // 로고 클릭 → 전체 새로고침 대신 "업무 현황" 탭을 열고(1분할) 포커스 + var brandLink = document.querySelector('.gov-portal-brand'); + if (brandLink) brandLink.addEventListener('click', function (e) { + e.preventDefault(); + if (layout !== 'single') setLayout('single'); + openTab(DASH_URL, '업무 현황'); + }); + function reloadTab(id) { var t = tabs[id]; if (!t) return;