기소유예 > 교육신청 > 신청팝업 생년월일 수정, 성별 삭제

This commit is contained in:
subsub 2025-10-29 12:14:56 +09:00
parent c2d918f022
commit d3fdc340f0
2 changed files with 16 additions and 5 deletions

View File

@ -357,9 +357,15 @@ $(document).ready(function(){
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope=“row”>생년월일 8자리 (ex.1988.01.01)</th> <th scope=“row”>생년월일/성별</th>
<td> <td>
<div class="calendar_wrap"> <div class="birth_wrap">
<input type="hidden" value="" id="dBirth"/>
<input type="text" class="birth_input" maxlength="6" />
- <input type="text" class="jender_input" maxlength="1" />
<span>******</span>
</div>
<%-- <div class="calendar_wrap">
<input type="hidden" value="" id="dBirth"/> <input type="hidden" value="" id="dBirth"/>
<select name="" id="year" class="selType1"> <select name="" id="year" class="selType1">
@ -544,7 +550,7 @@ $(document).ready(function(){
return v; return v;
} }
</script> --> </script> -->
</div> </div> --%>
<%-- <script src="${pageContext.request.contextPath}/visitEdu/usr/publish/script/duetdatepicker2.js"></script> --%> <%-- <script src="${pageContext.request.contextPath}/visitEdu/usr/publish/script/duetdatepicker2.js"></script> --%>
</td> </td>
</tr> </tr>
@ -561,13 +567,13 @@ $(document).ready(function(){
<button type="button" class="btnType06" onclick="fncChkNo();">인증하기</button> <button type="button" class="btnType06" onclick="fncChkNo();">인증하기</button>
</td> </td>
</tr> </tr>
<tr> <!-- <tr>
<th scope=“row”>성별</th> <th scope=“row”>성별</th>
<td> <td>
<input type="radio" id="sexM" name="sex" value="M"> <label class="" for="sexM">남성</label> <input type="radio" id="sexM" name="sex" value="M"> <label class="" for="sexM">남성</label>
<input type="radio" id="sexF" name="sex" value="F"> <label class="" for="sexF">여성</label> <input type="radio" id="sexF" name="sex" value="F"> <label class="" for="sexF">여성</label>
</td> </td>
</tr> </tr> -->
</tbody> </tbody>
</table> </table>

View File

@ -131,6 +131,11 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa
select.selType1.read-only{background: url(/ipedu/visitEdu/usr/publish/images/content/icon_select_gray.png) no-repeat calc(100% - 15px) center; color:#888; pointer-events:none;} select.selType1.read-only{background: url(/ipedu/visitEdu/usr/publish/images/content/icon_select_gray.png) no-repeat calc(100% - 15px) center; color:#888; pointer-events:none;}
.tb_type02.tb_type02_write input[type="text"].input_time {width: 50px;} .tb_type02.tb_type02_write input[type="text"].input_time {width: 50px;}
.birth_wrap{display:flex;font-size:1.5rem;font-size:700;align-items:center;gap:8px;}
.birth_wrap .birth_input{width:20%;min-width:85px;}
.birth_wrap .jender_input{width:7%;min-width:32px;}
.birth_wrap span{font-size:1.5rem;font-weight:700;margin:5px 0 0 0;}
.select_wrap{display:flex;gap:16px;} .select_wrap{display:flex;gap:16px;}
.select_wrap li{display:flex;align-items:center;gap:8px;} .select_wrap li{display:flex;align-items:center;gap:8px;}
.select_wrap label{font-size:1.8rem;color:#666;} .select_wrap label{font-size:1.8rem;color:#666;}