69 lines
3.3 KiB
HTML
69 lines
3.3 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<div class="row mb-1">
|
||
|
|
나포정보
|
||
|
|
</div>
|
||
|
|
<div class="row mb-1">
|
||
|
|
<label class="col-sm-2 col-form-label col-form-label-sm text-center">나포일시</label>
|
||
|
|
<div class="col-4">
|
||
|
|
<input class="form-control form-control-sm" name="napoDt" id="napoDt" th:value="${#temporals.format(asfCov.napoDt, 'yyyy-MM-dd HH:mm')}" readonly>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
<div class="row mb-1">
|
||
|
|
<label class="col-sm-2 col-form-label col-form-label-sm text-center">침범유형</label>
|
||
|
|
<div class="col-4">
|
||
|
|
<select class="form-select form-select-sm" name="invasionType" disabled>
|
||
|
|
<option value="">선택</option>
|
||
|
|
<th:block th:each="commonCode:${session.commonCode.get('IST')}">
|
||
|
|
<option th:value="${commonCode.itemCd}" th:text="${commonCode.itemValue}"
|
||
|
|
th:selected="${commonCode.itemCd eq asfCov.invasionType}"></option>
|
||
|
|
</th:block>
|
||
|
|
</select>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="row mb-1">
|
||
|
|
<label class="col-sm-2 col-form-label col-form-label-sm text-center">사건담당 기관</label>
|
||
|
|
<div class="col-4">
|
||
|
|
<select class="form-select form-select-sm" name="caseAgency" disabled>
|
||
|
|
<option value="">선택</option>
|
||
|
|
<th:block th:each="commonCode:${session.commonCode.get('ATA')}">
|
||
|
|
<option th:value="${commonCode.itemCd}" th:text="${commonCode.itemValue}"
|
||
|
|
th:selected="${commonCode.itemCd eq asfCov.caseAgency}"></option>
|
||
|
|
</th:block>
|
||
|
|
</select>
|
||
|
|
</div>
|
||
|
|
<label class="col-sm-2 col-form-label col-form-label-sm text-center">단속<br>경찰서</label>
|
||
|
|
<div class="col-4">
|
||
|
|
<select class="form-select form-select-sm" name="crackdownPolice" id="crackdownPolice" disabled>
|
||
|
|
<option value="">선택</option>
|
||
|
|
<th:block th:each="commonCode:${session.commonCode.get('CPO')}">
|
||
|
|
<option th:value="${commonCode.itemCd}" th:text="${commonCode.itemValue}"
|
||
|
|
th:selected="${commonCode.itemCd eq asfCov.crackdownPolice}"></option>
|
||
|
|
</th:block>
|
||
|
|
<option value="etc">직접입력</option>
|
||
|
|
</select>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="row mb-1">
|
||
|
|
<label class="col-sm-2 col-form-label col-form-label-sm text-center">단속함정</label>
|
||
|
|
<div class="col-4">
|
||
|
|
<select class="form-select form-select-sm" name="crackdownBoat" id="crackdownBoat" disabled>
|
||
|
|
<option value="">선택</option>
|
||
|
|
<th:block th:each="num : ${#numbers.sequence(1,#lists.size(session.commonCode.get('CPO')))}">
|
||
|
|
<th:block th:if="${'CPO'+num == asfCov.crackdownPolice}" th:each="commonCode:${session.commonCode.get('CPO'+num)}">
|
||
|
|
<option th:value="${commonCode.itemCd}" th:text="${commonCode.itemValue}" th:selected="${asfCov.crackdownBoat eq commonCode.itemCd}"></option>
|
||
|
|
</th:block>
|
||
|
|
</th:block>
|
||
|
|
</select>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<!--<div class="row mb-1">-->
|
||
|
|
<!-- <label class="col-sm-2 col-form-label col-form-label-sm text-center">나포일시</label>-->
|
||
|
|
<!-- <div class="col-4">-->
|
||
|
|
<!-- <input class="form-control form-control-sm" name="fieldIvsgtNapoDt" id="fieldIvsgtNapoDt" th:value="${#temporals.format(asfCovList.fieldIvsgtNapoDt, 'yyyy-MM-dd HH:mm')}" readonly>-->
|
||
|
|
<!-- </div>-->
|
||
|
|
<!--</div>-->
|
||
|
|
|
||
|
|
</html>
|