기본코드관리 2분할 조회와 무료용 목록 컬럼 정리

기본코드관리에서 코드종류 선택 시 같은 화면 우측에 세부코드가 즉시 보이도록 2분할 UI로 전환하고, 무료용 대상자 목록의 불필요한 구분 컬럼을 숨겨 화면 구성을 단순화했다.

Made-with: Cursor
This commit is contained in:
taekyoungc
2026-04-14 14:49:15 +09:00
parent 40db578e85
commit 0b4c622b99
3 changed files with 162 additions and 47 deletions

View File

@@ -13,7 +13,6 @@
<thead>
<tr>
<th class="w-16">번호</th>
<th>구분</th>
<th>대상자명</th>
<th>연락처</th>
<th>주소</th>
@@ -28,7 +27,6 @@
<?php foreach ($list as $row): ?>
<tr>
<td class="text-center"><?= esc($row->fr_idx) ?></td>
<td class="text-center"><?= esc($row->fr_type_code) ?></td>
<td class="text-left pl-2"><?= esc($row->fr_name) ?></td>
<td class="text-center"><?= esc($row->fr_phone) ?></td>
<td class="text-left pl-2"><?= esc($row->fr_addr) ?></td>
@@ -47,7 +45,7 @@
<?php endforeach; ?>
<?php if (empty($list)): ?>
<tr>
<td colspan="10" class="text-center text-gray-500 py-4 text-sm space-y-1">
<td colspan="9" class="text-center text-gray-500 py-4 text-sm space-y-1">
<p>등록된 데이터가 없습니다.</p>
<p class="text-gray-400">다른 지자체를 선택 중이면 해당 지자체 기준으로만 조회됩니다. Super Admin 은 상단에서 작업 지자체를 바꿔 보세요.</p>
</td>