master
DESKTOP-QGC5RJO\DBNT 2023-02-01 15:08:50 +09:00
parent 153e322a84
commit 5edd061b49
3 changed files with 7 additions and 7 deletions

View File

@ -27,7 +27,7 @@ public class KwmsController {
if(Utils.isEmpty(empInfo.getDic())){ if(Utils.isEmpty(empInfo.getDic())){
mav.addObject("joinFlag", "F"); mav.addObject("joinFlag", "F");
mav.addObject("userInfo", empInfo); mav.addObject("userInfo", empInfo);
mav.addObject("msg", "-포함 입력 ex) M00-00000"); mav.addObject("msg", "-포함 입력 ex) M00-00000");
}else{ }else{
UserInfo savedUser = userInfoService.selectUserInfoToDicCode(empInfo.getDic()); UserInfo savedUser = userInfoService.selectUserInfoToDicCode(empInfo.getDic());
if(savedUser == null || savedUser.getUserStatus().equals("USC004")){ if(savedUser == null || savedUser.getUserStatus().equals("USC004")){

View File

@ -116,7 +116,7 @@
</div> </div>
<div class="row mb-3"> <div class="row mb-3">
<label for="fileInputer" class="col-sm-2 col-form-label col-form-label-sm text-center bg-lightB1">첨부파일</label> <label for="fileInputer" class="col-sm-2 col-form-label col-form-label-sm text-center bg-lightB1">첨부파일</label>
<div class="col-sm-10 px-0" style="min-height: 70px;"> <div class="col-sm-10" style="min-height: 70px;">
<div class="w-100 h-100 border border-info rounded text-center" id="uploadDiv"> <div class="w-100 h-100 border border-info rounded text-center" id="uploadDiv">
<th:block th:if="${#strings.isEmpty(partInfo.fileList[0].origNm)}"> <th:block th:if="${#strings.isEmpty(partInfo.fileList[0].origNm)}">
<br>파일을 업로드 해주세요. <br>파일을 업로드 해주세요.

View File

@ -9,13 +9,13 @@
<div class="mb-3 mt-3 row"> <div class="mb-3 mt-3 row">
<label for="dicCode" class="col-sm-2 col-form-label col-form-label-sm text-center ">디지털식별코드</label> <label for="dicCode" class="col-sm-2 col-form-label col-form-label-sm text-center ">디지털식별코드</label>
<div class="col-sm-3"> <div class="col-sm-3">
<input type="text" class="form-control form-control-sm" id="dicCode" name="dicCode" autocomplete="off" th:value="${userInfo.dic}" th:placeholder="${msg}"> <input type="text" class="form-control form-control-sm" id="dicCode" name="dicCode" autocomplete="off" th:value="${userInfo.dic}">
<!-- <label for="dicCode" style="font-size: 12px" th:text="${msg}"></label>-->
</div> </div>
<button type="button" class="btn btn-sm btn-outline-primary col-sm-1" id="dicCodeSearchBtn">검색</button> <button type="button" class="btn btn-sm btn-outline-primary col-sm-1" id="dicCodeSearchBtn">검색</button>
</div> </div>
<div class="row float-start">
<label for="dicCode" style="font-size: 12px" th:text="${msg}"></label></div>
</div>
</div> </div>
<div class="modal-body" th:if="${joinFlag eq 'T'}"> <div class="modal-body" th:if="${joinFlag eq 'T'}">
<form id="userInfoInsert" action="#" th:action="@{/admin/insertUserInfo}" method="post"> <form id="userInfoInsert" action="#" th:action="@{/admin/insertUserInfo}" method="post">
@ -170,7 +170,7 @@
</form> </form>
</div> </div>
<div class="modal-footer bg-light" th:if="${joinFlag eq 'T'}"> <div class="modal-footer bg-light" th:if="${joinFlag eq 'T'}">
<!-- <button type="button" class="btn btn-secondary" data-bs-dismiss="modal" id="closeModalBtn">닫기</button>--> <!-- <button type="button" class="btn btn-secondary" data-bs-dismiss="modal" id="closeModalBtn">닫기</button>-->
<button type="button" class="btn btn-primary" id="saveBtn">신청</button> <button type="button" class="btn btn-primary" id="saveBtn">신청</button>
</div> </div>
</div> </div>