이지우 - 강사 헤더 메뉴 분기 수정, 체험교실 대시보드 수정, CORS simple필터 제외 원복
This commit is contained in:
parent
920c426931
commit
c294a374b5
6
pom.xml
6
pom.xml
@ -69,12 +69,6 @@
|
|||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!-- https://mvnrepository.com/artifact/com.thetransactioncompany/cors-filter -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.thetransactioncompany</groupId>
|
|
||||||
<artifactId>cors-filter</artifactId>
|
|
||||||
<version>2.6</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>egovframework.rte</groupId>
|
<groupId>egovframework.rte</groupId>
|
||||||
<artifactId>egovframework.rte.fdl.security</artifactId>
|
<artifactId>egovframework.rte.fdl.security</artifactId>
|
||||||
|
|||||||
@ -46,7 +46,6 @@ import kcc.let.utl.sim.service.EgovClntInfo;
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
@Controller
|
@Controller
|
||||||
@CrossOrigin(origins = "*", methods = RequestMethod.POST)
|
|
||||||
public class APILoginContoller {
|
public class APILoginContoller {
|
||||||
|
|
||||||
/** userManageService */
|
/** userManageService */
|
||||||
|
|||||||
@ -1168,10 +1168,5 @@
|
|||||||
WHERE USER_ID = #userId#
|
WHERE USER_ID = #userId#
|
||||||
AND LCTR_DIV_CD = '30'
|
AND LCTR_DIV_CD = '30'
|
||||||
AND APRVL_CD = '60'
|
AND APRVL_CD = '60'
|
||||||
AND PRCS_ORD = (SELECT
|
|
||||||
MAX(PRCS_APLCT_PRD_ORD)
|
|
||||||
FROM VE_PRCS_APLCT_PRD
|
|
||||||
WHERE LCTR_DIV_CD = '30'
|
|
||||||
AND USE_YN = 'Y')
|
|
||||||
</select>
|
</select>
|
||||||
</sqlMap>
|
</sqlMap>
|
||||||
|
|||||||
@ -60,6 +60,8 @@ $(document).ready(function (){
|
|||||||
if("${instrDiv}" == 'tngrInstrDiv'){
|
if("${instrDiv}" == 'tngrInstrDiv'){
|
||||||
$("#9991000").parent('li').hide();
|
$("#9991000").parent('li').hide();
|
||||||
$("#full_9991000").parent('li').hide();
|
$("#full_9991000").parent('li').hide();
|
||||||
|
$("#99912000").parent('li').hide();
|
||||||
|
$("#full_99912000").parent('li').hide();
|
||||||
}else if("${instrDiv}" == 'adultInstrDiv'){
|
}else if("${instrDiv}" == 'adultInstrDiv'){
|
||||||
$("#99923000").parent('li').hide();
|
$("#99923000").parent('li').hide();
|
||||||
$("#full_99923000").parent('li').hide();
|
$("#full_99923000").parent('li').hide();
|
||||||
|
|||||||
@ -264,18 +264,20 @@
|
|||||||
|
|
||||||
<div class="btn_wrap btn_layout01">
|
<div class="btn_wrap btn_layout01">
|
||||||
<div class="btn_left">
|
<div class="btn_left">
|
||||||
|
<button type="button" class="btnType05" onclick="location.href='<c:url value="/web/ve/aplct/cpyrgExprnClsrm/exprnClsrmEnd/exprnClsrmEndList.do"/>'">운영 목록으로 이동</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn_center">
|
<div class="btn_center">
|
||||||
</div>
|
|
||||||
<div class="btn_right">
|
|
||||||
<c:if test="${info.aprvlCd eq VeConstants.STATUS_CD_EDT_REQ or info.sbmtYn ne 'Y'}">
|
<c:if test="${info.aprvlCd eq VeConstants.STATUS_CD_EDT_REQ or info.sbmtYn ne 'Y'}">
|
||||||
<button type="button" class="btnType06" onclick="fncGoEdit();">수정</button>
|
<button type="button" class="btnType05" onclick="fncGoEdit();">수정</button>
|
||||||
</c:if>
|
</c:if>
|
||||||
<!-- 23.07031 - 신청기간 내 수정 기능 추가 - 요청중일때만 수정 가능 -->
|
<!-- 23.07031 - 신청기간 내 수정 기능 추가 - 요청중일때만 수정 가능 -->
|
||||||
<c:if test="${info.aprvlCd eq VeConstants.STATUS_CD_SBMT and cnt > 0}">
|
<c:if test="${info.aprvlCd eq VeConstants.STATUS_CD_SBMT and cnt > 0}">
|
||||||
<button type="button" class="btnType06" onclick="fncGoEdit();">수정</button>
|
<button type="button" class="btnType06" onclick="fncGoEdit();">수정</button>
|
||||||
</c:if>
|
</c:if>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="btn_right">
|
||||||
|
<button type="button" class="btnType05" onclick="nextTab('2');">운영계획으로 이동</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@ -49,6 +49,11 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function nextTab(tab){
|
||||||
|
window.scrollTo(0,0);
|
||||||
|
$('.p_'+tab).children('a').click();
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<form id="loadForm" name="loadForm" method="post">
|
<form id="loadForm" name="loadForm" method="post">
|
||||||
|
|||||||
@ -119,10 +119,12 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="btn_wrap btn_layout01">
|
<div class="btn_wrap btn_layout01">
|
||||||
<div class="btn_left">
|
<div class="btn_left">
|
||||||
|
<button type="button" class="btnType05" onclick="location.href='<c:url value="/web/ve/aplct/cpyrgExprnClsrm/exprnClsrmEnd/exprnClsrmEndList.do"/>'">운영 목록으로 이동</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn_center">
|
<div class="btn_center">
|
||||||
</div>
|
</div>
|
||||||
<div class="btn_right">
|
<div class="btn_right">
|
||||||
|
<button type="button" class="btnType05" onclick="nextTab('4');">결과보고로 이동</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -167,10 +167,9 @@
|
|||||||
|
|
||||||
<div class="btn_wrap btn_layout01">
|
<div class="btn_wrap btn_layout01">
|
||||||
<div class="btn_left">
|
<div class="btn_left">
|
||||||
|
<button type="button" class="btnType05" onclick="location.href='<c:url value="/web/ve/aplct/cpyrgExprnClsrm/exprnClsrmEnd/exprnClsrmEndList.do"/>'">운영 목록으로 이동</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn_center">
|
<div class="btn_center">
|
||||||
</div>
|
|
||||||
<div class="btn_right">
|
|
||||||
<c:if test="${info.aprvlCd eq VeConstants.STATUS_CD_EDT_REQ or info.sbmtYn ne 'Y'}">
|
<c:if test="${info.aprvlCd eq VeConstants.STATUS_CD_EDT_REQ or info.sbmtYn ne 'Y'}">
|
||||||
<button type="button" class="btnType06" onclick="fncGoEdit();">수정</button>
|
<button type="button" class="btnType06" onclick="fncGoEdit();">수정</button>
|
||||||
</c:if>
|
</c:if>
|
||||||
@ -179,6 +178,9 @@
|
|||||||
<button type="button" class="btnType06" onclick="fncGoEdit();">수정</button>
|
<button type="button" class="btnType06" onclick="fncGoEdit();">수정</button>
|
||||||
</c:if>
|
</c:if>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="btn_right">
|
||||||
|
<button type="button" class="btnType05" onclick="nextTab('3');">서류 제출로 이동</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@ -594,17 +594,24 @@
|
|||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
|
</c:if>
|
||||||
<div class="btn_wrap btn_layout01">
|
<div class="btn_wrap btn_layout01">
|
||||||
<div class="btn_left"></div>
|
<div class="btn_left">
|
||||||
|
<button type="button" class="btnType05" onclick="location.href='<c:url value="/web/ve/aplct/cpyrgExprnClsrm/exprnClsrmEnd/exprnClsrmEndList.do"/>'">운영 목록으로 이동</button>
|
||||||
|
</div>
|
||||||
<div class="btn_center">
|
<div class="btn_center">
|
||||||
<button type="button" class="btnType06" onclick="fncSave();">결과제출</button>
|
<c:if test="${info.exprnAprvlCd != '10'}">
|
||||||
<button type="button" class="btnType06" onclick="fncTmprrSave();">임시저장</button>
|
<button type="button" class="btnType06" onclick="fncSave();">결과제출</button>
|
||||||
|
<button type="button" class="btnType06" onclick="fncTmprrSave();">임시저장</button>
|
||||||
|
</c:if>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn_right">
|
<div class="btn_right">
|
||||||
<div id="fileControl5" style="display:none"></div>
|
<c:if test="${info.exprnAprvlCd != '10'}">
|
||||||
|
<div id="fileControl5" style="display:none"></div>
|
||||||
|
</c:if>
|
||||||
|
<button type="button" class="btnType05" onclick="nextTab('5');">최종결과로 이동</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</c:if>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@ -700,6 +700,7 @@
|
|||||||
</c:if>
|
</c:if>
|
||||||
<div class="btn_wrap btn_layout01">
|
<div class="btn_wrap btn_layout01">
|
||||||
<div class="btn_left">
|
<div class="btn_left">
|
||||||
|
<button type="button" class="btnType05" onclick="location.href='<c:url value="/web/ve/aplct/cpyrgExprnClsrm/exprnClsrmEnd/exprnClsrmEndList.do"/>'">운영 목록으로 이동</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn_center">
|
<div class="btn_center">
|
||||||
<button type="button" class="btnType04" onclick="fncGoLctrAplctReg();">교육콘텐츠 신청</button>
|
<button type="button" class="btnType04" onclick="fncGoLctrAplctReg();">교육콘텐츠 신청</button>
|
||||||
|
|||||||
@ -19,73 +19,6 @@
|
|||||||
<url-pattern>*.do</url-pattern>
|
<url-pattern>*.do</url-pattern>
|
||||||
</filter-mapping>
|
</filter-mapping>
|
||||||
|
|
||||||
<!-- CORS -->
|
|
||||||
<!-- <filter>
|
|
||||||
<filter-name>CORS</filter-name>
|
|
||||||
<filter-class>com.thetransactioncompany.cors.CORSFilter</filter-class>
|
|
||||||
<init-param>
|
|
||||||
<param-name>cors.allowed.origins</param-name>
|
|
||||||
<param-value>*</param-value>
|
|
||||||
</init-param>
|
|
||||||
<init-param>
|
|
||||||
<param-name>cors.allowed.methods</param-name>
|
|
||||||
<param-value>GET,POST,HEAD,OPTIONS,PUT</param-value>
|
|
||||||
</init-param>
|
|
||||||
<init-param>
|
|
||||||
<param-name>cors.allowed.headers</param-name>
|
|
||||||
<param-value>Content-Type,X-Requested-With,accept,Origin,Access-Control-Request-Method,Access-Control-Request-Headers</param-value>
|
|
||||||
</init-param>
|
|
||||||
<init-param>
|
|
||||||
<param-name>cors.exposed.headers</param-name>
|
|
||||||
<param-value>Access-Control-Allow-Origin,Access-Control-Allow-Credentials</param-value>
|
|
||||||
</init-param>
|
|
||||||
<init-param>
|
|
||||||
<param-name>cors.support.credentials</param-name>
|
|
||||||
<param-value>false</param-value>
|
|
||||||
</init-param>
|
|
||||||
<init-param>
|
|
||||||
<param-name>cors.preflight.maxage</param-name>
|
|
||||||
<param-value>10</param-value>
|
|
||||||
</init-param>
|
|
||||||
</filter>
|
|
||||||
<filter-mapping>
|
|
||||||
<filter-name>CORS</filter-name>
|
|
||||||
<url-pattern>/*</url-pattern>
|
|
||||||
</filter-mapping>
|
|
||||||
<filter>
|
|
||||||
<filter-name>CorsFilter</filter-name>
|
|
||||||
<filter-class>org.apache.catalina.filters.CorsFilter</filter-class>
|
|
||||||
<init-param>
|
|
||||||
<param-name>cors.allowed.origins</param-name>
|
|
||||||
<param-value>*</param-value>
|
|
||||||
</init-param>
|
|
||||||
<init-param>
|
|
||||||
<param-name>cors.allowed.methods</param-name>
|
|
||||||
<param-value>GET,POST,HEAD,OPTIONS,PUT,DELETE</param-value>
|
|
||||||
</init-param>
|
|
||||||
<init-param>
|
|
||||||
<param-name>cors.allowed.headers</param-name>
|
|
||||||
<param-value>Content-Type,X-Requested-With,accept,Origin,Access-Control-Request-Method,Access-Control-Request-Headers</param-value>
|
|
||||||
</init-param>
|
|
||||||
<init-param>
|
|
||||||
<param-name>cors.exposed.headers</param-name>
|
|
||||||
<param-value>Access-Control-Allow-Origin,Access-Control-Allow-Credentials</param-value>
|
|
||||||
</init-param>
|
|
||||||
<init-param>
|
|
||||||
쿠키 통신을 안하는데 이걸 true로 하면 4XX 서버 에러가 뜬다
|
|
||||||
<param-name>cors.support.credentials</param-name>
|
|
||||||
<param-value>false</param-value>
|
|
||||||
</init-param>
|
|
||||||
<init-param>
|
|
||||||
<param-name>cors.preflight.maxage</param-name>
|
|
||||||
<param-value>10</param-value>
|
|
||||||
</init-param>
|
|
||||||
</filter>
|
|
||||||
<filter-mapping>
|
|
||||||
<filter-name>CorsFilter</filter-name>
|
|
||||||
<url-pattern>/*</url-pattern>
|
|
||||||
</filter-mapping> -->
|
|
||||||
|
|
||||||
<!-- 템플릿 소스에서는 아래의 필터사용 대신 JSP 출력시 <c:out> 태그를 사용하는 것을 기본정책으로 한다 -->
|
<!-- 템플릿 소스에서는 아래의 필터사용 대신 JSP 출력시 <c:out> 태그를 사용하는 것을 기본정책으로 한다 -->
|
||||||
<!-- egovframework.rte.ptl.mvc.filter.HTMLTagFilter kcc.com.cmm.filter.HTMLTagFilter-->
|
<!-- egovframework.rte.ptl.mvc.filter.HTMLTagFilter kcc.com.cmm.filter.HTMLTagFilter-->
|
||||||
<!--
|
<!--
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user