사용자 기소유예 신청 진행중

This commit is contained in:
hylee 2023-10-06 14:02:30 +09:00
parent 073ea02597
commit d75a5cd263
3 changed files with 35 additions and 4 deletions

View File

@ -301,7 +301,7 @@
</td>
<th scope="row">생년월일</th>
<td>
<input type="text" name="dBirth" id="dBirth" placeholder="0000-00-00" maxlength="10" value="<c:out value="${info.dBirth }" />" />
<input type="text" name="dBirth" id="dBirth" placeholder="00000000" maxlength="8" value="<c:out value="${info.dBirth }" />" />
</td>
</tr>
<!-- <tr>

View File

@ -250,7 +250,7 @@
</td>
<th scope="row">생년월일</th>
<td>
<input type="text" name="dBirth" id="dBirth" placeholder="0000-00-00" maxlength="10"/>
<input type="text" name="dBirth" id="dBirth" placeholder="00000000" maxlength="8"/>
</td>
</tr>
<!-- <tr>

View File

@ -17,6 +17,10 @@
$(document).ready(function(){
$(".aplctBtn button").click(function(){
var regForm = document.regForm;
regForm.prcsAplctPrdOrd.value = $(this).data('info');
});
// 상태값 확인
$(".ddlnCdStts").each(function() {
var $thisCell = $(this);
@ -243,7 +247,8 @@ $(document).ready(function(){
</c:choose>
</td>
<td class="aplctBtn">
<button type="button" class="btnType04" onclick="fncEduReg('<c:out value="${list.prcsAplctPrdOrd}"/>');">신청</button>
<%-- <button type="button" class="btnType04" onclick="fncEduReg('<c:out value="${list.prcsAplctPrdOrd}"/>');">신청</button> --%>
<button type="button" class="btnType04" data-info="<c:out value="${list.prcsAplctPrdOrd}"/>" data-tooltip="reg_search" >신청</button>
</td>
</tr>
</c:forEach>
@ -270,3 +275,29 @@ $(document).ready(function(){
</div>
</form:form>
</div>
<!-- 신청 클릭 > 기소유예 대상자 확인 팝업 -->
<div class="tooltip-wrap">
<div class="popup_wrap popType01" tabindex="0" data-tooltip-con="reg_search" data-focus="reg_search"
data-focus-prev="reg_search_close">
<div class="popup_tit">
<p>교육대상자 확인</p> <button class="btn_popup_close tooltip-close" data-focus="reg_search_close"
title="팝업 닫기"><i></i></button>
</div>
<div class="popup_cont">
<p class="text_greeting">안녕하세요.</br>한국저작권위원회입니다.</p>
<div class="popup_texta"><input placeholder="문의내용을 입력해 주세요."></textarea></div>
<div class="pop_btn_wrap btn_layout01">
<div class="btn_left">
</div>
<div class="btn_center">
<button type="button" class="btnType05">문의하기</button>
</div>
<div class="btn_right">
</div>
</div>
</div>
</div>
</div>
<!--// 신청 클릭 > 기소유예 대상자 확인 팝업 -->