2022-11-29 18:04 저작위 수정 요청 사항 개발

This commit is contained in:
myname 2022-11-29 18:05:10 +09:00
parent e56c7574c9
commit a3da15b20e
3 changed files with 22 additions and 8 deletions

View File

@ -150,6 +150,14 @@ $(document).ready(function(){
commonPopWindowopenForm("/kccadr/adjPgrMgr/apm/popup/addRpplPop.do", "750", "660", "adrDetailPop", $('#pop'));
}
function fncUpdtRppl(rpplTy, rpplRespddSeq) {
$('#rpplTy').val(rpplTy);
$('#rpplRespddSeq').val(rpplRespddSeq);
var pop = document.pop;
commonPopWindowopenForm("/kccadr/adjPgrMgr/apm/popup/updtRpplPop.do", "750", "660", "adrDetailPop", $('#pop'));
}
function fncAppChg(adrSn) {
//$('#rpplTy').val(rpplTy);
@ -756,6 +764,7 @@ $(document).ready(function(){
<!-- 고도화로 추가됨 -->
<input type="hidden" id="sbmtTyCd" name="sbmtTyCd" value=""/>
<input type="hidden" id="rpplRespddSeq" name="rpplRespddSeq" value=""/>
</form>
@ -1946,7 +1955,7 @@ $(document).ready(function(){
<%-- <c:out value="${info.resPonDentNm }"></c:out> --%>
<c:out value="${resPDList.resPonDentNm}"></c:out>
<c:if test="${!empty info.adrNo && !empty resPDList.resPonDentNm}">
<button type="button" class="btnType01 btn_change" onclick="fncRpplConnNo('20', '<c:out value="${resPDList.resPonDentId}"/>')">접속번호확인</button>
<button type="button" class="btnType01 btn_change" onclick="fncRpplConnNo('20', '<c:out value="${resPDList.resPonDentId}"/>')">접속번호확인</button>
</c:if>
<!-- 사용자경정신청 시 노출 버튼 (사용자가 경정신청했을경우 버튼 노출되게 수정 필요) -->
<c:if test="${
@ -1974,10 +1983,13 @@ $(document).ready(function(){
<c:otherwise>
<c:out value="${resPDList.resPonDentDNm}"/>
<c:if test="${!empty info.adrNo && !empty resPDList.resPonDentDNm}">
<button type="button" class="btnType01 btn_change" onclick="fncRpplConnNo('40', '<c:out value="${resPDList.resPonDentDId}"/>')">접속번호확인</button>
<button type="button" class="btnType01 btn_change" onclick="fncRpplConnNo('40', '<c:out value="${resPDList.resPonDentDId}"/>')">접속번호확인</button>
</c:if>
</c:otherwise>
</c:choose>
<c:if test="${!empty resPDList.resPonDentDNm}">
<button type="button" class="btnType01 btn_change" onclick="fncUpdtRppl('40', '<c:out value="${resPDList.resPonDentId}"/>')">대리인정보변경</button>
</c:if>
</p>
</td>
</tr>

View File

@ -180,6 +180,7 @@
<th class="req_text">이메일</th>
<td>
<input type="hidden" id="rpplEmail" name="rpplEmail">
<!-- onkeyup="onlyAlphabetNumberEmail(this)" -->
<input type="text" id="rpplEmail01" class="email_input">
@
<input type="text" id="rpplEmail02" class="email_input">
@ -205,11 +206,11 @@
<tr>
<th class="req_text">연락처</th>
<td>
<input type="text" class="phone_input" id="rpplPhone01" maxlength="3">
<input type="text" class="phone_input" id="rpplPhone01" maxlength="3" onkeyup="onlyNumber(this)">
-
<input type="text" class="phone_input" id="rpplPhone02" maxlength="4">
<input type="text" class="phone_input" id="rpplPhone02" maxlength="4" onkeyup="onlyNumber(this)">
-
<input type="text" class="phone_input" id="rpplPhone03" maxlength="4">
<input type="text" class="phone_input" id="rpplPhone03" maxlength="4" onkeyup="onlyNumber(this)">
<input type="hidden" id="rpplPhone" name="rpplPhone">
</td>
</tr>

View File

@ -222,13 +222,14 @@ $( document ).ready(function(){
<label for="rpplPhone1${status.index}" class="label">핸드폰 앞자리 선택</label>
<%--<kc:select codeId="ADR020" defaultText="직접입력" name="adjstRpplList[${status.index}].rpplPhone1" id="rpplPhone1${status.index}" selectedValue="${not empty phone ? phone[0] : ''}"/>--%>
<form:input path="adjstRpplList[${status.index}].rpplPhone1" id="rpplPhone1${status.index}" onkeyup="onlyNumber(this)"
<!-- onkeyup="onlyNumber(this)" -->
<form:input path="adjstRpplList[${status.index}].rpplPhone1" id="rpplPhone1${status.index}"
size="15" cssClass="input_phone" placeholder="연락처 입력" maxlength="3" value="${not empty phone ? phone[0] : ''}"/>
-<label for="rpplPhone2${status.index}" class="label">핸드폰 가운데자리 입력</label>
<form:input path="adjstRpplList[${status.index}].rpplPhone2" id="rpplPhone2${status.index}" onkeyup="onlyNumber(this)"
<form:input path="adjstRpplList[${status.index}].rpplPhone2" id="rpplPhone2${status.index}"
size="15" cssClass="input_phone" placeholder="연락처 입력" maxlength="4" value="${not empty phone ? phone[1] : ''}"/>
-<label for="rpplPhone3${status.index}" class="label">핸드폰 마지막자리 입력</label>
<form:input path="adjstRpplList[${status.index}].rpplPhone3" id="rpplPhone3${status.index}" onkeyup="onlyNumber(this)"
<form:input path="adjstRpplList[${status.index}].rpplPhone3" id="rpplPhone3${status.index}"
size="15" cssClass="input_phone" placeholder="연락처 입력" maxlength="4" value="${not empty phone ? phone[2] : ''}"/>
</td>
</tr>