|
|
@ -59,26 +59,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
#progress {
|
|
|
|
|
|
|
|
appearance: none;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#progress::-webkit-progress-bar {
|
|
|
|
|
|
|
|
background:#f0f0f0;
|
|
|
|
|
|
|
|
border-radius:10px;
|
|
|
|
|
|
|
|
box-shadow: inset 3px 3px 10px #ccc;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#progress::-webkit-progress-value {
|
|
|
|
|
|
|
|
border-radius:10px;
|
|
|
|
|
|
|
|
background: #1D976C;
|
|
|
|
|
|
|
|
background: -webkit-linear-gradient(to right, #93F9B9, #1D976C);
|
|
|
|
|
|
|
|
background: linear-gradient(to right, #93F9B9, #1D976C);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<%--TODO: 보완 필요 : 공통 ajax 호출 모듈과 통합 필요 --%>
|
|
|
|
<%--TODO: 보완 필요 : 공통 ajax 호출 모듈과 통합 필요 --%>
|
|
|
|
<script type="text/javascript">
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function(){
|
|
|
|
$(document).ready(function(){
|
|
|
@ -89,19 +69,17 @@
|
|
|
|
const br = '<br/>';
|
|
|
|
const br = '<br/>';
|
|
|
|
const msg = '처리중...';
|
|
|
|
const msg = '처리중...';
|
|
|
|
const loading = '<img class="loading-bar" src="${ctx}/resources/framework/images/common/ajax-loading.gif" style="margin-left: -20px;" alt="조회 프로그래스바" />';
|
|
|
|
const loading = '<img class="loading-bar" src="${ctx}/resources/framework/images/common/ajax-loading.gif" style="margin-left: -20px;" alt="조회 프로그래스바" />';
|
|
|
|
// const loading = '<h2>진행상항</h2><progress id="progress" value="50" min="0" max="100"></progress>';
|
|
|
|
|
|
|
|
$.blockUI({ message : br+msg+br+br+loading+br+br});
|
|
|
|
$.blockUI({ message : br+msg+br+br+loading+br+br});
|
|
|
|
}).ajaxStop(function(){
|
|
|
|
}).ajaxStop(function(){
|
|
|
|
$.unblockUI();
|
|
|
|
$.unblockUI();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
//초기화
|
|
|
|
//초기화
|
|
|
|
XitIncludeBase.init();
|
|
|
|
XitIncludeBase.inputEnterEventIssue(); //form Tag에 배치된 input["text"] Tag가 한개일때 Event 이슈 처리
|
|
|
|
|
|
|
|
XitIncludeBase.noticeRollingEvent(); //공지사항 롤링 Event 처리
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var XitIncludeBase = {
|
|
|
|
var XitIncludeBase = {
|
|
|
|
/* ===================
|
|
|
|
/* ===================
|
|
|
|
* 초기화 항목
|
|
|
|
* 초기화 항목
|
|
|
|