Merge branch 'master' of http://yongjoon.cho@vcs.iten.co.kr:9999/hylee/kcc_adr_advc_git
This commit is contained in:
commit
75da3c7b3d
@ -65,7 +65,30 @@ public class EgovCustomRankManageServiceImpl extends EgovAbstractServiceImpl im
|
|||||||
@Override
|
@Override
|
||||||
public RestResponse egovRankDataLoad(String codeId) {
|
public RestResponse egovRankDataLoad(String codeId) {
|
||||||
try {
|
try {
|
||||||
List<EgovCustomRankManageVO> rankListVO = egovCustomRankManageDAO.egovRankDataLoad(codeId);
|
|
||||||
|
List<EgovCustomRankManageVO> rankListVO = new ArrayList<EgovCustomRankManageVO>();
|
||||||
|
if("tmpCode".equals(codeId)) {
|
||||||
|
for(int i = 1 ; i < 6 ; i ++) {
|
||||||
|
EgovCustomRankManageVO tmpVO = new EgovCustomRankManageVO();
|
||||||
|
tmpVO.setCode(String.valueOf(i));
|
||||||
|
tmpVO.setCodeNm("위원장");
|
||||||
|
if(i == 2) {
|
||||||
|
tmpVO.setCodeNm("부서장");
|
||||||
|
}
|
||||||
|
if(i == 3) {
|
||||||
|
tmpVO.setCodeNm("조정조서관");
|
||||||
|
}
|
||||||
|
if(i == 4) {
|
||||||
|
tmpVO.setCodeNm("팀장");
|
||||||
|
}
|
||||||
|
tmpVO.setCodeId(codeId);
|
||||||
|
|
||||||
|
rankListVO.add(tmpVO);
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
rankListVO = egovCustomRankManageDAO.egovRankDataLoad(codeId);
|
||||||
|
}
|
||||||
|
|
||||||
return new RestResponse(HttpStatus.OK, rankListVO, "성공", LocalDateTime.now());
|
return new RestResponse(HttpStatus.OK, rankListVO, "성공", LocalDateTime.now());
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|||||||
@ -48,7 +48,7 @@
|
|||||||
var dataList = [];
|
var dataList = [];
|
||||||
var data = {};
|
var data = {};
|
||||||
|
|
||||||
data.id = 'C0050';
|
data.id = 'tmpCode';
|
||||||
data.text = '직급관리';
|
data.text = '직급관리';
|
||||||
data.parent = '#';
|
data.parent = '#';
|
||||||
data.state = {opened : true};
|
data.state = {opened : true};
|
||||||
@ -69,6 +69,8 @@
|
|||||||
|
|
||||||
// jsTree function
|
// jsTree function
|
||||||
function fn_jsTree(resultData){
|
function fn_jsTree(resultData){
|
||||||
|
console.log('resultData : ', resultData);
|
||||||
|
|
||||||
$("#rank_organization").jstree({
|
$("#rank_organization").jstree({
|
||||||
"core" : {
|
"core" : {
|
||||||
"check_callback" : true
|
"check_callback" : true
|
||||||
@ -201,7 +203,7 @@
|
|||||||
type : "POST"
|
type : "POST"
|
||||||
, url : "<c:url value='/uss/rnt/EgovRankDataLoad.do'/>"
|
, url : "<c:url value='/uss/rnt/EgovRankDataLoad.do'/>"
|
||||||
, data : JSON.stringify({
|
, data : JSON.stringify({
|
||||||
codeId : "C0050"
|
codeId : "tmpCode"
|
||||||
})
|
})
|
||||||
, dataType : 'json'
|
, dataType : 'json'
|
||||||
, async : false
|
, async : false
|
||||||
@ -209,7 +211,7 @@
|
|||||||
, contentType : "application/json"
|
, contentType : "application/json"
|
||||||
, cache : false
|
, cache : false
|
||||||
, success : function(returnData) {
|
, success : function(returnData) {
|
||||||
if (data.status == "OK") {
|
if (returnData.status == "OK") {
|
||||||
// 초기데이터 생성 후 jsTree 만듬
|
// 초기데이터 생성 후 jsTree 만듬
|
||||||
var resultData = fn_makeList(returnData);
|
var resultData = fn_makeList(returnData);
|
||||||
fn_jsTree(resultData);
|
fn_jsTree(resultData);
|
||||||
|
|||||||
@ -56,6 +56,9 @@
|
|||||||
window.open("<c:url value='/cmm/fms/FileDown.do?atchFileId=" + atchFileId + "&fileSn=" + fileSn + "'/>");
|
window.open("<c:url value='/cmm/fms/FileDown.do?atchFileId=" + atchFileId + "&fileSn=" + fileSn + "'/>");
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
<style type="text/css">
|
||||||
|
.wrap {min-width:1660px;}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<form:form id="listForm" name="listForm" commandName="apmVO" onsubmit="return false;" method="post">
|
<form:form id="listForm" name="listForm" commandName="apmVO" onsubmit="return false;" method="post">
|
||||||
|
|||||||
@ -306,7 +306,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">조정조항</th>
|
<th colspan="2">조정조항</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -313,7 +313,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">조정조항</th>
|
<th colspan="2">조정조항</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${info.closeCn1 }"></c:out> </textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${info.closeCn1 }"></c:out> </textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -252,7 +252,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">조정조항</th>
|
<th colspan="2">조정조항</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"></textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -193,7 +193,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>확정 증명 내용</th>
|
<th>확정 증명 내용</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="3">위 사건에 대해 조정부가 내린 조정을 갈음하는 결정이 아래와 같이 당사자 쌍방에게 송달 및 확정되었음을 증명함.</textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="3" style="height: 200px;">위 사건에 대해 조정부가 내린 조정을 갈음하는 결정이 아래와 같이 당사자 쌍방에게 송달 및 확정되었음을 증명함.</textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -366,7 +366,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>주소</th>
|
<th>주소</th>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<kc:select codeId="CC021" id="appPlaceAddrTy" name="appPlaceAddrTy" selectedValue="${info.appPlaceAddrTy }" script="onchange='fncShow()'" />
|
<kc:select codeId="CC021" id="appPlaceAddrTy" name="appPlaceAddrTy" selectedValue="${info.appPlaceAddrTy }" script="onchange='fncShow()'" css="style='width: 420px;'" />
|
||||||
<div id="appPlaceAddrTyDiv" style="display: none;">
|
<div id="appPlaceAddrTyDiv" style="display: none;">
|
||||||
<button type="button" class="btnType01" onclick="fn_postCode(this);">주소검색</button>
|
<button type="button" class="btnType01" onclick="fn_postCode(this);">주소검색</button>
|
||||||
<input type="hidden" id="appPlaceAddrZipTx" name="appPlaceAddrZipTx" class="adr_input">
|
<input type="hidden" id="appPlaceAddrZipTx" name="appPlaceAddrZipTx" class="adr_input">
|
||||||
|
|||||||
@ -384,7 +384,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>주소</th>
|
<th>주소</th>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<kc:select codeId="CC021" id="appPlaceAddrTy" name="appPlaceAddrTy" selectedValue="01" script="onchange='fncShow()'" />
|
<kc:select codeId="CC021" id="appPlaceAddrTy" name="appPlaceAddrTy" selectedValue="01" script="onchange='fncShow()'" css="style='width: 420px;'" />
|
||||||
<!-- <select name="appPlaceAddr" id="appPlaceAddr" >
|
<!-- <select name="appPlaceAddr" id="appPlaceAddr" >
|
||||||
<option value="분쟁조정실">한국저작권위원회 분쟁조정실</option>
|
<option value="분쟁조정실">한국저작권위원회 분쟁조정실</option>
|
||||||
<option value="">직접입력</option>
|
<option value="">직접입력</option>
|
||||||
|
|||||||
@ -285,7 +285,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">이 유</th>
|
<th colspan="2">이 유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${info.closeCn1 }"/></textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${info.closeCn1 }"/></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -285,7 +285,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">이 유</th>
|
<th colspan="2">이 유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${info.closeCn1 }"></c:out> </textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${info.closeCn1 }"></c:out> </textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -239,7 +239,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">이 유</th>
|
<th colspan="2">이 유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${info.closeCn1}"/></textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${info.closeCn1}"/></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -305,7 +305,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>주소</th>
|
<th>주소</th>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<kc:select codeId="CC021" id="appPlaceAddrTy" name="appPlaceAddrTy" selectedValue="01" script="onchange='fncShow()'" />
|
<kc:select codeId="CC021" id="appPlaceAddrTy" name="appPlaceAddrTy" selectedValue="01" script="onchange='fncShow()'" css="style='width: 420px;'" />
|
||||||
<!-- <select name="appPlaceAddr" id="appPlaceAddr" >
|
<!-- <select name="appPlaceAddr" id="appPlaceAddr" >
|
||||||
<option value="분쟁조정실">한국저작권위원회 분쟁조정실</option>
|
<option value="분쟁조정실">한국저작권위원회 분쟁조정실</option>
|
||||||
<option value="">직접입력</option>
|
<option value="">직접입력</option>
|
||||||
|
|||||||
@ -388,7 +388,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>주소</th>
|
<th>주소</th>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<kc:select codeId="CC021" id="appPlaceAddrTy" name="appPlaceAddrTy" selectedValue="${info.appPlaceAddrTy }" script="onchange='fncShow()'" />
|
<kc:select codeId="CC021" id="appPlaceAddrTy" name="appPlaceAddrTy" selectedValue="${info.appPlaceAddrTy }" script="onchange='fncShow()'" css="style='width: 420px;'" />
|
||||||
<div id="appPlaceAddrTyDiv" style="display: none;">
|
<div id="appPlaceAddrTyDiv" style="display: none;">
|
||||||
<button type="button" class="btnType01" onclick="fn_postCode(this);">주소검색</button>
|
<button type="button" class="btnType01" onclick="fn_postCode(this);">주소검색</button>
|
||||||
<input type="hidden" id="appPlaceAddrZipTx" name="appPlaceAddrZipTx" class="adr_input">
|
<input type="hidden" id="appPlaceAddrZipTx" name="appPlaceAddrZipTx" class="adr_input">
|
||||||
|
|||||||
@ -324,7 +324,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>주소</th>
|
<th>주소</th>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<kc:select codeId="CC021" id="appPlaceAddrTy" name="appPlaceAddrTy" selectedValue="01" script="onchange='fncShow()'" />
|
<kc:select codeId="CC021" id="appPlaceAddrTy" name="appPlaceAddrTy" selectedValue="01" script="onchange='fncShow()'" css="style='width: 420px;'" />
|
||||||
<!-- <select name="appPlaceAddr" id="appPlaceAddr" >
|
<!-- <select name="appPlaceAddr" id="appPlaceAddr" >
|
||||||
<option value="분쟁조정실">한국저작권위원회 분쟁조정실</option>
|
<option value="분쟁조정실">한국저작권위원회 분쟁조정실</option>
|
||||||
<option value="">직접입력</option>
|
<option value="">직접입력</option>
|
||||||
|
|||||||
@ -441,7 +441,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>조정조항</th>
|
<th>조정조항</th>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<textarea name="ctrCn" id="ctrCn" cols="30" rows="2"><c:out value="${drtCtrVO.ctrCn }" /></textarea>
|
<textarea name="ctrCn" id="ctrCn" cols="30" rows="2" style="height: 200px;"><c:out value="${drtCtrVO.ctrCn }" /></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -400,7 +400,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>조정조항</th>
|
<th>조정조항</th>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<textarea name="ctrCn" id="ctrCn" cols="30" rows="2"></textarea>
|
<textarea name="ctrCn" id="ctrCn" cols="30" rows="2" style="height: 200px;"></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -234,7 +234,7 @@ function fn_submit(){
|
|||||||
<p>취하사유</p>
|
<p>취하사유</p>
|
||||||
</th>
|
</th>
|
||||||
<td>
|
<td>
|
||||||
<textarea name="cnclCn" cols="30" rows="5" cssClass="purpose_text" cssStyle="resize: none;" title="취하사유 입력"><c:out value='${info.cnclCn}' /></textarea>
|
<textarea name="cnclCn" cols="30" rows="5" cssClass="purpose_text" cssStyle="resize: none;" title="취하사유 입력" style="height: 200px;"><c:out value='${info.cnclCn}' /></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|||||||
@ -292,7 +292,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">이 유</th>
|
<th colspan="2">이 유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${info.closeCn1}"></c:out> </textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${info.closeCn1}"></c:out> </textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -250,7 +250,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">이 유</th>
|
<th colspan="2">이 유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${info.closeCn1 }"></c:out> </textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${info.closeCn1 }"></c:out> </textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -238,7 +238,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">이 유</th>
|
<th colspan="2">이 유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"></textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -327,20 +327,20 @@
|
|||||||
<th>주문</th>
|
<th>주문</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<%-- <input type="text" name="closeCn3" id="closeCn3" value="<c:out value="${drtCtrVO.closeCn3 }"></c:out>" size="70"> --%>
|
<%-- <input type="text" name="closeCn3" id="closeCn3" value="<c:out value="${drtCtrVO.closeCn3 }"></c:out>" size="70"> --%>
|
||||||
<textarea name="closeCn3" id="closeCn3" cols="30" rows="3"><c:out value="${drtCtrVO.closeCn3}"/></textarea>
|
<textarea name="closeCn3" id="closeCn3" cols="30" rows="3" style="height: 200px;"><c:out value="${drtCtrVO.closeCn3}"/></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>신청취지</th>
|
<th>신청취지</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<%-- <input type="text" name="closeCn2" id="closeCn2" value="<c:out value="${drtCtrVO.closeCn2 }"></c:out>" size="70"> --%>
|
<%-- <input type="text" name="closeCn2" id="closeCn2" value="<c:out value="${drtCtrVO.closeCn2 }"></c:out>" size="70"> --%>
|
||||||
<textarea name="closeCn2" id="closeCn2" cols="30" rows="3"><c:out value="${drtCtrVO.closeCn2 }"/></textarea>
|
<textarea name="closeCn2" id="closeCn2" cols="30" rows="3" style="height: 200px;"><c:out value="${drtCtrVO.closeCn2 }"/></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>이유</th>
|
<th>이유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -191,20 +191,20 @@
|
|||||||
<th>주문</th>
|
<th>주문</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<%-- <input type="text" name="closeCn3" id="closeCn3" value="<c:out value="${drtCtrVO.closeCn3 }"></c:out>" size="70"> --%>
|
<%-- <input type="text" name="closeCn3" id="closeCn3" value="<c:out value="${drtCtrVO.closeCn3 }"></c:out>" size="70"> --%>
|
||||||
<textarea name="closeCn3" id="closeCn3" cols="30" rows="3"><c:out value="${drtCtrVO.closeCn3}"/></textarea>
|
<textarea name="closeCn3" id="closeCn3" cols="30" rows="3" style="height: 200px;"><c:out value="${drtCtrVO.closeCn3}"/></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>신청취지</th>
|
<th>신청취지</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<%-- <input type="text" name="closeCn2" id="closeCn2" value="<c:out value="${drtCtrVO.closeCn2 }"></c:out>" size="70"> --%>
|
<%-- <input type="text" name="closeCn2" id="closeCn2" value="<c:out value="${drtCtrVO.closeCn2 }"></c:out>" size="70"> --%>
|
||||||
<textarea name="closeCn2" id="closeCn2" cols="30" rows="3"><c:out value="${drtCtrVO.closeCn2 }"/></textarea>
|
<textarea name="closeCn2" id="closeCn2" cols="30" rows="3" style="height: 200px;"><c:out value="${drtCtrVO.closeCn2 }"/></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>이유</th>
|
<th>이유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -267,20 +267,20 @@
|
|||||||
<th>주문</th>
|
<th>주문</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<!-- <input type="text" name="closeCn3" id="closeCn3" size="70"> -->
|
<!-- <input type="text" name="closeCn3" id="closeCn3" size="70"> -->
|
||||||
<textarea name="closeCn3" id="closeCn3" cols="30" rows="3"></textarea>
|
<textarea name="closeCn3" id="closeCn3" cols="30" rows="3" style="height: 200px;"></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>신청취지</th>
|
<th>신청취지</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<!-- <input type="text" name="closeCn2" id="closeCn2" size="70"> -->
|
<!-- <input type="text" name="closeCn2" id="closeCn2" size="70"> -->
|
||||||
<textarea name="closeCn2" id="closeCn2" cols="30" rows="3"></textarea>
|
<textarea name="closeCn2" id="closeCn2" cols="30" rows="3" style="height: 200px;"></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>이유</th>
|
<th>이유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="3"></textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="3" style="height: 200px;"></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -100,7 +100,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">조정조항</th>
|
<th colspan="2">조정조항</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -91,7 +91,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">이 유</th>
|
<th colspan="2">이 유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${info.closeCn1 }"/></textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${info.closeCn1 }"/></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -161,7 +161,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>조정조항</th>
|
<th>조정조항</th>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<textarea name="ctrCn" id="ctrCn" cols="30" rows="2"><c:out value="${drtCtrVO.ctrCn }" /></textarea>
|
<textarea name="ctrCn" id="ctrCn" cols="30" rows="2" style="height: 200px;"><c:out value="${drtCtrVO.ctrCn }" /></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -233,7 +233,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>조서내용</th>
|
<th>조서내용</th>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<textarea name="prtclCn" id="prtclCn" cols="30" rows="2"><c:out value="${info.prtclCn }" /></textarea>
|
<textarea name="prtclCn" id="prtclCn" cols="30" rows="2" style="height: 200px;"><c:out value="${info.prtclCn }" /></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -91,7 +91,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">이 유</th>
|
<th colspan="2">이 유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${info.closeCn1}"></c:out> </textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${info.closeCn1}"></c:out> </textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -109,20 +109,20 @@
|
|||||||
<th>주문</th>
|
<th>주문</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<%-- <input type="text" name="closeCn3" id="closeCn3" value="<c:out value="${drtCtrVO.closeCn3 }"></c:out>" size="70"> --%>
|
<%-- <input type="text" name="closeCn3" id="closeCn3" value="<c:out value="${drtCtrVO.closeCn3 }"></c:out>" size="70"> --%>
|
||||||
<textarea name="closeCn3" id="closeCn3" cols="30" rows="3"><c:out value="${drtCtrVO.closeCn3}"/></textarea>
|
<textarea name="closeCn3" id="closeCn3" cols="30" rows="3" style="height: 200px;"><c:out value="${drtCtrVO.closeCn3}"/></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>신청취지</th>
|
<th>신청취지</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<%-- <input type="text" name="closeCn2" id="closeCn2" value="<c:out value="${drtCtrVO.closeCn2 }"></c:out>" size="70"> --%>
|
<%-- <input type="text" name="closeCn2" id="closeCn2" value="<c:out value="${drtCtrVO.closeCn2 }"></c:out>" size="70"> --%>
|
||||||
<textarea name="closeCn2" id="closeCn2" cols="30" rows="3"><c:out value="${drtCtrVO.closeCn2 }"/></textarea>
|
<textarea name="closeCn2" id="closeCn2" cols="30" rows="3" style="height: 200px;"><c:out value="${drtCtrVO.closeCn2 }"/></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>이유</th>
|
<th>이유</th>
|
||||||
<td class="td_cause">
|
<td class="td_cause">
|
||||||
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
|
<textarea name="closeCn1" id="closeCn1" cols="30" rows="2" style="height: 200px;"><c:out value="${drtCtrVO.closeCn1 }"></c:out> </textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -413,12 +413,12 @@ table select+button{vertical-align: middle;}
|
|||||||
#pageUnit{width: 100px}
|
#pageUnit{width: 100px}
|
||||||
|
|
||||||
/* 워크플로우 */
|
/* 워크플로우 */
|
||||||
.work_flow_wrap{background-color: #f1f2f4; border: 1px solid #d5d5d5; border-radius: 5px; padding: 0 20px; margin: 0 0 30px 0;transition: all 0.5s ease; height: auto;}
|
.work_flow_wrap{background-color: #f1f2f4; border: 1px solid #d5d5d5; border-radius: 5px; padding: 0 20px; margin: 0 0 30px 0;transition: all 0.5s ease; height: auto;min-width:1200px;box-sizing:border-box;}
|
||||||
.work_flow_wrap .work_tit{display: flex; justify-content: space-between; align-items: center; font-size: 20px; padding: 20px 0 20px 6px;}
|
.work_flow_wrap .work_tit{display: flex; justify-content: space-between; align-items: center; font-size: 20px; padding: 20px 0 20px 6px;}
|
||||||
.btn_open, .work_flow_wrap .btn_close{width: 30px; height: 30px; border-radius: 5px; background-color: #fff;}
|
.btn_open, .work_flow_wrap .btn_close{width: 30px; height: 30px; border-radius: 5px; background-color: #fff;}
|
||||||
.btn_open i{display: inline-block; width: 100%; height: 100%; background-image: url(/kccadrPb/usr/image/common/btn_plus.png); background-repeat: no-repeat; background-position: center;}
|
.btn_open i{display: inline-block; width: 100%; height: 100%; background-image: url(/kccadrPb/usr/image/common/btn_plus.png); background-repeat: no-repeat; background-position: center;}
|
||||||
.work_flow_wrap .btn_close i{display: inline-block; width: 100%; height: 100%; background-image: url(/kccadrPb/usr/image/common/btn_minus.png); background-repeat: no-repeat; background-position: center;}
|
.work_flow_wrap .btn_close i{display: inline-block; width: 100%; height: 100%; background-image: url(/kccadrPb/usr/image/common/btn_minus.png); background-repeat: no-repeat; background-position: center;}
|
||||||
.work_cont{background-color: #fff; border-radius: 5px; padding: 20px 25px; margin: 0 0 25px 0;transition: all 0.5s ease;height:714px;overflow:hidden;}
|
.work_cont{background-color: #fff; border-radius: 5px; padding: 20px 25px; margin: 0 0 25px 0;transition: all 0.5s ease;height:740px;overflow:hidden;width:1160px;box-sizing:border-box;}
|
||||||
.work_flow_wrap .top_work{display: flex; justify-content: space-between; align-items: center;}
|
.work_flow_wrap .top_work{display: flex; justify-content: space-between; align-items: center;}
|
||||||
|
|
||||||
.work_flow_wrap .work_cont .top_work li{overflow: visible;}
|
.work_flow_wrap .work_cont .top_work li{overflow: visible;}
|
||||||
@ -436,5 +436,7 @@ table select+button{vertical-align: middle;}
|
|||||||
|
|
||||||
.work_flow_wrap.off .work_cont{height: 0; padding: 0 25px; margin: 0; transition: all 0.5s ease;}
|
.work_flow_wrap.off .work_cont{height: 0; padding: 0 25px; margin: 0; transition: all 0.5s ease;}
|
||||||
.work_cont .status01 p{border: 1px solid #ea5404; color: #ea5404;}
|
.work_cont .status01 p{border: 1px solid #ea5404; color: #ea5404;}
|
||||||
|
.work_cont p.status01{border: 1px solid #ea5404; color: #ea5404;}
|
||||||
.work_cont .status02 p{border: 2px solid #1b6fcd; color: #1b6fcd; font-weight: 500;}
|
.work_cont .status02 p{border: 2px solid #1b6fcd; color: #1b6fcd; font-weight: 500;}
|
||||||
|
.work_cont p.status02{border: 2px solid #1b6fcd; color: #1b6fcd; font-weight: 500;}
|
||||||
/* //워크플로우 */
|
/* //워크플로우 */
|
||||||
Loading…
Reference in New Issue
Block a user