From 8dcd840a650abf05caa3b1c0a8a9dfbc81211a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Mon, 2 Feb 2026 12:51:02 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EC=98=81=EC=97=85=EA=B4=80=EB=A6=AC=20?= =?UTF-8?q?=EB=8C=80=EC=8B=9C=EB=B3=B4=EB=93=9C=20=ED=83=AD=20=EB=82=B4=20?= =?UTF-8?q?=EC=83=88=EB=A1=9C=EA=B3=A0=EC=B9=A8=20=EB=B2=84=ED=8A=BC=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 내 활동/유치 파트너 현황 탭에 개별 새로고침 버튼 추가 - HTMX로 탭 콘텐츠만 새로고침 (페이지 전체 리로드 없음) - 로딩 중 스피너 애니메이션 표시 Co-Authored-By: Claude Opus 4.5 --- .../views/sales/dashboard/index.blade.php | 85 +++++++++++++++---- 1 file changed, 67 insertions(+), 18 deletions(-) diff --git a/resources/views/sales/dashboard/index.blade.php b/resources/views/sales/dashboard/index.blade.php index fbc3312e..0d4508aa 100644 --- a/resources/views/sales/dashboard/index.blade.php +++ b/resources/views/sales/dashboard/index.blade.php @@ -13,6 +13,20 @@ .htmx-request.htmx-indicator { display: inline-flex; } + /* 새로고침 버튼 아이콘 상태 */ + .refresh-btn [data-refresh-spin] { + display: none; + } + .refresh-btn [data-refresh-icon] { + display: inline-block; + } + /* 로딩 중: 스피너 표시, 아이콘 숨김 */ + .refresh-btn.htmx-request [data-refresh-spin] { + display: inline-block; + } + .refresh-btn.htmx-request [data-refresh-icon] { + display: none; + } @endpush @@ -52,32 +66,67 @@ class="inline-flex items-center justify-center w-8 h-8 rounded-full bg-blue-100
-