104 lines
3.5 KiB
Plaintext
104 lines
3.5 KiB
Plaintext
<%@ page contentType="text/html; charset=utf-8"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
|
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
|
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
|
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
|
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<title>조정진행 상세</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<script src="/kccadrPb/usr/script/popup.js"></script>
|
|
<script type="text/javaScript" language="javascript">
|
|
$(document).ready(function() {
|
|
$("#tabNav > button").on("click", function(e) {
|
|
var idx = $(this).index();
|
|
|
|
tabPageLoad(idx);
|
|
});
|
|
tabPageLoad(parseInt('${courtVO.tabSeq}'));
|
|
|
|
//해당 페이지에 대한 권한 체크
|
|
_admin_fn_check_authority("crtDetail", "div.cont", "R");
|
|
|
|
});
|
|
|
|
//권한 체크 결과값으로 후속처리
|
|
function admin_fn_check_authority_ret(p_param){
|
|
//alert(p_param); //리턴값으로 상세 권한 체크시 사용 "" 또는 CUD 또는 CUDP
|
|
}
|
|
|
|
function tabPageLoad(idx) {
|
|
|
|
var url = getPageUrl(idx);
|
|
|
|
$('#tabContent').load(url, {
|
|
"crtSeq" : $("#crtSeq").val()
|
|
}, function(res, status, xhr) {
|
|
});
|
|
}
|
|
function getPageUrl(idx) {
|
|
switch (idx) {
|
|
case 0:
|
|
return '/kccadr/adjCourtCnctn/adjCourtCnctnDetailTab0.do';
|
|
case 1:
|
|
return '/kccadr/adjCourtCnctn/adjCourtCnctnDetailTab1.do';
|
|
}
|
|
}
|
|
|
|
function fncGoList(pageNo) {
|
|
var listForm = document.listForm;
|
|
listForm.action = "<c:url value='/web/kccadr/adjcclt/ai/adjstConciliatorList.do'/>";
|
|
|
|
listForm.submit();
|
|
}
|
|
|
|
function fn_egov_downFile(atchFileId, fileSn) {
|
|
window.open("<c:url value='/cmm/fms/FileDown.do?atchFileId=" + atchFileId + "&fileSn=" + fileSn + "'/>");
|
|
}
|
|
</script>
|
|
<style type="text/css">
|
|
.wrap {min-width:1660px;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<form:form id="listForm" name="listForm" commandName="courtVO" onsubmit="return false;" method="post">
|
|
<input type="hidden" id="crtSeq" name="crtSeq" value="<c:out value="${courtVO.crtSeq}" />" />
|
|
<input type="hidden" id="crtSn" name="crtSn" value="<c:out value="${courtVO.crtSn}" />" />
|
|
</form:form>
|
|
<div class="cont_wrap">
|
|
<div class="box">
|
|
<!-- cont_tit -->
|
|
<div class="cont_tit">
|
|
<h2>법원연계조정 상세</h2>
|
|
<ul class="cont_nav">
|
|
<li class="home">
|
|
<a href="/"><i></i></a>
|
|
</li>
|
|
<li>
|
|
<>법원연계조정 관리</p>
|
|
</li>
|
|
<li>
|
|
<p>법원연계조정 목록</p>
|
|
</li>
|
|
<li>
|
|
<span class="cur_nav">법원연계조정 상세</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<!-- //cont_tit -->
|
|
<div class="cont">
|
|
<div id="tabNav" class="tab_btn tab02">
|
|
<button class="tab ${courtVO.tabSeq eq '0' ? 'on' : ''}">사건일반</button>
|
|
<button class="tab ${courtVO.tabSeq eq '1' ? 'on' : ''}">사건수행문서</button>
|
|
<%-- <button class="tab ${apmVO.tabSeq eq '2' ? 'on' : ''}">진행정보</button> --%>
|
|
</div>
|
|
<div id="tabContent" class="tab_cont on"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|