Compare commits

...

2 Commits

Author SHA1 Message Date
jiHyung df2fe1c55c Merge branch 'master' of http://118.219.150.34:50501/DBNT/FAISP 2022-10-12 11:43:07 +09:00
jiHyung 87901fa66e 검거보고서 수정 2022-10-12 11:43:03 +09:00
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -58,13 +58,13 @@
<div class="mb-3 row"> <div class="mb-3 row">
<label for="contentInfoDiv" class="col-sm-2 col-form-label text-center">사건개요</label> <label for="contentInfoDiv" class="col-sm-2 col-form-label text-center">사건개요</label>
<div class="col-sm-10" id="contentInfoDiv"> <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> </div>
<div class="mb-3 row"> <div class="mb-3 row">
<label for="contentMainDiv" class="col-sm-2 col-form-label text-center">주요내용</label> <label for="contentMainDiv" class="col-sm-2 col-form-label text-center">주요내용</label>
<div class="col-sm-10" id="contentMainDiv"> <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> </div>
</div> </div>