From c92bd1b8caa6ddabe6acee42018262febd5d91fb Mon Sep 17 00:00:00 2001 From: dujinkim Date: Wed, 19 Nov 2025 06:15:43 +0000 Subject: (임수민) 기본계약 코멘트, 법무검토 수정 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/legal/sslvw-pur-inq-req-dialog.tsx | 25 +++++++++++----------- 1 file changed, 13 insertions(+), 12 deletions(-) (limited to 'components/common') diff --git a/components/common/legal/sslvw-pur-inq-req-dialog.tsx b/components/common/legal/sslvw-pur-inq-req-dialog.tsx index 438b6582..e9ed75e5 100644 --- a/components/common/legal/sslvw-pur-inq-req-dialog.tsx +++ b/components/common/legal/sslvw-pur-inq-req-dialog.tsx @@ -173,29 +173,30 @@ export function SSLVWPurInqReqDialog({ onConfirm }: SSLVWPurInqReqDialogProps) { -
+
{isLoading ? ( -
+
데이터 로딩 중...
) : error ? ( -
+
오류: {error}
) : data.length === 0 ? ( -
+
데이터가 없습니다.
) : ( - <> - - - +
+ {/* 테이블 영역 - 스크롤 가능 */} + +
+ {table.getHeaderGroups().map((headerGroup) => ( {headerGroup.headers.map((header) => ( - + {header.isPlaceholder ? null : flexRender( @@ -238,8 +239,8 @@ export function SSLVWPurInqReqDialog({ onConfirm }: SSLVWPurInqReqDialogProps) {
- {/* 페이지네이션 컨트롤 */} -
+ {/* 페이지네이션 컨트롤 - 고정 영역 */} +
{table.getFilteredSelectedRowModel().rows.length}개 행 선택됨
@@ -304,7 +305,7 @@ export function SSLVWPurInqReqDialog({ onConfirm }: SSLVWPurInqReqDialogProps) {
- +
)}
-- cgit v1.2.3