검거보고서 수정

jiHyung 2022-10-12 11:43:03 +09:00
parent 313b44ace4
commit 87901fa66e
2 changed files with 3 additions and 3 deletions

View File

@ -191,7 +191,7 @@ function contentCheck(){
alert("검거유형2를 선택해주세요.")
flag = false;
}
else if(!$("#relatedReport").is(':checked')) {
else if(!$("#relatedReport").is(':checked') && $("input[name='ivsgtType']").val() != "arrest") {
if ($('input[name="relatedReportsText"]').length < 1) {
alert("연관보고서를 확인해 주세요.")
flag = false;

View File

@ -58,13 +58,13 @@
<div class="mb-3 row">
<label for="contentInfoDiv" class="col-sm-2 col-form-label text-center">사건개요</label>
<div class="col-sm-10" id="contentInfoDiv">
<textarea type='text' class="col-sm-10" name='contentInfos'th:utext="${boardInvestigation.contentInfo}" readonly></textarea>
<div type='text' class="col-sm-10" name='contentInfos'th:utext="${boardInvestigation.contentInfo}" readonly></div>
</div>
</div>
<div class="mb-3 row">
<label for="contentMainDiv" class="col-sm-2 col-form-label text-center">주요내용</label>
<div class="col-sm-10" id="contentMainDiv">
<textarea type='text' class="col-sm-10" name='contentMain' th:utext="${boardInvestigation.contentMain}" readonly></textarea>
<div type='text' class="col-sm-10" name='contentMain' th:utext="${boardInvestigation.contentMain}" readonly></div>
</div>
</div>
</div>