회원정보 수정
-> sso 연동 방식 변경으로 location.href로 수정
This commit is contained in:
parent
fcb0f3fdc0
commit
5577792c68
@ -65,15 +65,18 @@ $(document).ready(function (){
|
|||||||
|
|
||||||
/* 회원정보 수정 link */
|
/* 회원정보 수정 link */
|
||||||
function usrModify(){
|
function usrModify(){
|
||||||
var frm = document.usrModifyForm;
|
// var frm = document.usrModifyForm;
|
||||||
frm.accessToken.value = "<c:out value='${ssoLoginVO.access_token}'/>";
|
// frm.accessToken.value = "<c:out value='${ssoLoginVO.access_token}'/>";
|
||||||
frm.refreshToken.value = "<c:out value='${ssoLoginVO.refresh_token}'/>";
|
// frm.refreshToken.value = "<c:out value='${ssoLoginVO.refresh_token}'/>";
|
||||||
frm.returnSiteCode.value = "<c:out value='${returnSiteCode}'/>";
|
// frm.returnSiteCode.value = "<c:out value='${returnSiteCode}'/>";
|
||||||
frm.returnSiteUrl.value = "<c:out value='${returnSiteUrl}'/>";
|
// frm.returnSiteUrl.value = "<c:out value='${returnSiteUrl}'/>";
|
||||||
|
|
||||||
frm.target="_blank";
|
// frm.target="_blank";
|
||||||
frm.action = "<c:url value='${modifyUrl}'/>";
|
// frm.action = "<c:url value='${modifyUrl}'/>";
|
||||||
frm.submit();
|
// frm.submit();
|
||||||
|
|
||||||
|
var openNewWindow = window.open("about:blank");
|
||||||
|
openNewWindow.location.href = "<c:url value='${modifyUrl}'/>";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -114,9 +114,9 @@
|
|||||||
<option value="3" ${adjstIncidentVO.searchCondition eq '3' ? 'selected' : '' }>신청인명</option>
|
<option value="3" ${adjstIncidentVO.searchCondition eq '3' ? 'selected' : '' }>신청인명</option>
|
||||||
<option value="4" ${adjstIncidentVO.searchCondition eq '4' ? 'selected' : '' }>피신청인명</option>
|
<option value="4" ${adjstIncidentVO.searchCondition eq '4' ? 'selected' : '' }>피신청인명</option>
|
||||||
<option value="5" ${adjstIncidentVO.searchCondition eq '5' ? 'selected' : '' }>신청내용</option>
|
<option value="5" ${adjstIncidentVO.searchCondition eq '5' ? 'selected' : '' }>신청내용</option>
|
||||||
<c:if test="${adjstIncidentVO.searchStatus ne 'B'}">
|
<%-- <c:if test="${adjstIncidentVO.searchStatus ne 'B'}"> --%>
|
||||||
<option value="6" ${adjstIncidentVO.searchCondition eq '6' ? 'selected' : '' }>조정상태</option>
|
<%-- <option value="6" ${adjstIncidentVO.searchCondition eq '6' ? 'selected' : '' }>조정상태</option> --%>
|
||||||
</c:if>
|
<%-- </c:if> --%>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<div class="sel_date">
|
<div class="sel_date">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user