73 lines
2.5 KiB
HTML
73 lines
2.5 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org"
|
||
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||
|
|
layout:decorate="~{layout/layout}">
|
||
|
|
<th:block layout:fragment="script">
|
||
|
|
<script type="text/javascript" th:src="@{/js/admin/userMgt.js}"></script>
|
||
|
|
</th:block>
|
||
|
|
<div layout:fragment="content">
|
||
|
|
<main class="pt-3">
|
||
|
|
<h4>코드 관리</h4>
|
||
|
|
<div class="row mx-0">
|
||
|
|
<div class="col-12 card text-center">
|
||
|
|
<div class="card-body">
|
||
|
|
<div class="row justify-content-start">
|
||
|
|
<div class="col-6">
|
||
|
|
<div class="card">
|
||
|
|
<div class="card-body">
|
||
|
|
<table class="table table-striped">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th></th>
|
||
|
|
<th>분류코드</th>
|
||
|
|
<th>분류명</th>
|
||
|
|
<th>설명</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<!--<tbody th:if="${categoryList.size()==0}">
|
||
|
|
<tr>
|
||
|
|
<td colspan="2">검색된 분류가 없습니다.</td>
|
||
|
|
</tr>
|
||
|
|
</tbody>
|
||
|
|
<tbody th:if="${categoryList.size()>0}">
|
||
|
|
<tr class="categoryTr" th:each="commonCode:${categoryList}">
|
||
|
|
<td>
|
||
|
|
<input type="checkbox" class="categoryCheckBox" th:value="${commonCode.category}">
|
||
|
|
</td>
|
||
|
|
<td th:text="${commonCode.category}"></td>
|
||
|
|
</tr>
|
||
|
|
</tbody>-->
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="col-4" id="valueDiv">
|
||
|
|
<div class="card">
|
||
|
|
<div class="card-body">
|
||
|
|
<table class="table table-striped">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th>
|
||
|
|
<input type="checkbox" class="valueCheckBox" id="allValueCheckBox">
|
||
|
|
</th>
|
||
|
|
<th>하위코드</th>
|
||
|
|
<th>값</th>
|
||
|
|
<th>사용여부</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<!--<tbody>
|
||
|
|
<tr>
|
||
|
|
<td colspan="3">분류를 선택해주세요.</td>
|
||
|
|
</tr>
|
||
|
|
</tbody>-->
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
</html>
|