Merge branch 'master' of http://yongjoon.cho@vcs.iten.co.kr:9999/hylee/kcc_adr_advc_git
@ -629,12 +629,10 @@ public class ApmController {
|
||||
@RequestMapping(value = "popup/adjstReqOpenExamplePop.do")
|
||||
public String adjstReqOpenExamplePop(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
||||
|
||||
AdjstReqVO expm = adjstReqService.selectAdjstReqOpenExamplePop(adjstReqVO);
|
||||
model.addAttribute("ccTy", adjstReqVO.getCcTy());
|
||||
model.addAttribute("exmpCd", adjstReqVO.getExmpCd());
|
||||
System.out.println("adjstReqVO.getExmpCd() : "+ adjstReqVO.getExmpCd());
|
||||
|
||||
// apmVO.setSrchRpplTy(apmVO.getRpplTy());
|
||||
// model.addAttribute("rppList", apmService.selectAdrRpplList(apmVO));
|
||||
|
||||
model.addAttribute("expm", expm);
|
||||
|
||||
return "/kccadr/adjPgrMgr/apm/popup/adjstReqOpenExamplePop";
|
||||
}
|
||||
|
||||
@ -206,11 +206,11 @@ public class AdjReqMgrPastServiceImpl extends EgovAbstractServiceImpl implements
|
||||
adjReqMgrPastVO.setStatCd(KccadrConstants.ADR_NOSUCC);
|
||||
|
||||
|
||||
|
||||
//신규 조정사건 생성해 주기
|
||||
int adrCnt = 0 ;
|
||||
adrCnt = adjReqMgrPastDAO.insertAdrMgrMaster(adjReqMgrPastVO);
|
||||
|
||||
|
||||
if(adrCnt == 0) { //조정사건 생성이 실패했다면
|
||||
return ResponseEntity.ok(new RestResponse(HttpStatus.BAD_REQUEST, "저장에 실패하였습니다.", LocalDateTime.now()));
|
||||
|
||||
@ -401,7 +401,7 @@ public class AdjReqMgrPastServiceImpl extends EgovAbstractServiceImpl implements
|
||||
|
||||
|
||||
|
||||
return ResponseEntity.ok(new RestResponse(HttpStatus.OK, "조정신청 정보 저장이 완료되었습니다.", LocalDateTime.now()));
|
||||
return ResponseEntity.ok(new RestResponse(HttpStatus.OK, "조정신청 정보 저장이 완료되었습니다.", adrSeq, LocalDateTime.now()));
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -128,6 +128,47 @@ public class AdjReqMgrPastController {
|
||||
return "kccadr/adjReqMgrPast/adjReqMgrPastBasicRegist";
|
||||
}
|
||||
|
||||
/**
|
||||
* @methodName : adjReqMgrPastProgRegist
|
||||
* @author : 이호영
|
||||
* @date : 2022.09.15
|
||||
* @description : 사건진행정보 목록
|
||||
* @param adjReqMgrPastVO
|
||||
* @param model
|
||||
* @return
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping("/kccadr/adjReqMgOff/adjReqMgrPastProgRegist.do")
|
||||
public String adjReqMgrPastProgRegist(@ModelAttribute("searchVO") AdjReqMgrPastVO adjReqMgrPastVO, ModelMap model) throws Exception {
|
||||
|
||||
//로그인 권한정보 불러오기
|
||||
// LoginVO user = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
|
||||
// model.addAttribute("user", user);
|
||||
//
|
||||
// // 공통코드 조회
|
||||
// List<?> codeResult = cmmUseService.selectCmmCodeDetail("CC001");
|
||||
// model.addAttribute("CC001", codeResult);
|
||||
//
|
||||
// int reqPerTotCnt = 0;
|
||||
//
|
||||
// if(StringUtils.isNotBlank(adjReqMgrPastVO.getAdrSeq())) {
|
||||
//
|
||||
// //오프라인 조정 신청 정보 불러오기.
|
||||
// AdjReqMgrPastVO resultAdjReqMgrOffLine = adjReqMgrPastService.selectAdjReqMgrOffLineInfo(adjReqMgrPastVO);
|
||||
// model.addAttribute("adrVO", resultAdjReqMgrOffLine);
|
||||
// }else {
|
||||
// //기본 값 셋팅 - 대리인 여부, 신청자 분류
|
||||
// adjReqMgrPastVO.setRpplTy("10");
|
||||
// adjReqMgrPastVO.setReqTy("01");
|
||||
// model.addAttribute("adrVO", adjReqMgrPastVO);
|
||||
// }
|
||||
//
|
||||
//
|
||||
// model.addAttribute("reqPerTotCnt", reqPerTotCnt);
|
||||
|
||||
return "kccadr/adjReqMgrPast/adjReqMgrPastProgRegist";
|
||||
}
|
||||
|
||||
/**
|
||||
* @methodName : insertAdjReqMgrOffAjax
|
||||
* @author : 이호영
|
||||
|
||||
@ -51,7 +51,7 @@ public interface AdjstReqService {
|
||||
// 조정사건 정보 불러오기
|
||||
public AdjstReqVO selectAdjsMgrMaster(AdjstReqVO adjstReqVO) throws Exception;
|
||||
|
||||
public AdjstReqVO selectAdjstReqOpenExamplePop(AdjstReqVO adjstReqVO) throws Exception;
|
||||
public AdjstReqVO selectAdjstReqOpenExamplePopCn(AdjstReqVO adjstReqVO) throws Exception;
|
||||
|
||||
// 조정사건 대리인/신청인/피신청인 정보 불러오기
|
||||
public List<AdjstReqVO> selectAdjsReqUserListByadjSeq(AdjstReqVO adjstReqVO) throws Exception;
|
||||
|
||||
@ -826,35 +826,35 @@ public class AdjstReqVO extends ComDefaultVO implements Serializable {
|
||||
this.edtStatus = edtStatus;
|
||||
}
|
||||
|
||||
public String getExpmCd() {
|
||||
public String getExmpCd() {
|
||||
return exmpCd;
|
||||
}
|
||||
|
||||
public void setExpmCd(String exmpCd) {
|
||||
public void setExmpCd(String exmpCd) {
|
||||
this.exmpCd = exmpCd;
|
||||
}
|
||||
|
||||
public String getExpmCn() {
|
||||
public String getExmpCn() {
|
||||
return exmpCn;
|
||||
}
|
||||
|
||||
public void setExpmCn(String exmpCn) {
|
||||
public void setExmpCn(String exmpCn) {
|
||||
this.exmpCn = exmpCn;
|
||||
}
|
||||
|
||||
public String getExpmTit() {
|
||||
public String getExmpTit() {
|
||||
return exmpTit;
|
||||
}
|
||||
|
||||
public void setExpmTit(String exmpTit) {
|
||||
public void setExmpTit(String exmpTit) {
|
||||
this.exmpTit = exmpTit;
|
||||
}
|
||||
|
||||
public String getExpmCcTy() {
|
||||
public String getExmpCcTy() {
|
||||
return exmpCcTy;
|
||||
}
|
||||
|
||||
public void setExpmCcTy(String exmpCcTy) {
|
||||
public void setExmpCcTy(String exmpCcTy) {
|
||||
this.exmpCcTy = exmpCcTy;
|
||||
}
|
||||
|
||||
|
||||
@ -167,8 +167,8 @@ public class AdjstReqDAO extends EgovAbstractDAO {
|
||||
return (Integer) update("AdjstReqDAO.updateAdrMgrEditInfo", adjstReqVO);
|
||||
}
|
||||
|
||||
public AdjstReqVO selectAdjstReqOpenExamplePop(AdjstReqVO adjstReqVO) throws Exception {
|
||||
return (AdjstReqVO) select("AdjstReqDAO.selectAdjstReqOpenExamplePop",adjstReqVO);
|
||||
public AdjstReqVO selectAdjstReqOpenExamplePopCn(AdjstReqVO adjstReqVO) throws Exception {
|
||||
return (AdjstReqVO) select("AdjstReqDAO.selectAdjstReqOpenExamplePopCn",adjstReqVO);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -884,8 +884,8 @@ public class AdjstReqServiceImpl extends EgovAbstractServiceImpl implements Adj
|
||||
}
|
||||
|
||||
@Override
|
||||
public AdjstReqVO selectAdjstReqOpenExamplePop(AdjstReqVO adjstReqVO) throws Exception {
|
||||
return adjstReqDAO.selectAdjstReqOpenExamplePop(adjstReqVO);
|
||||
public AdjstReqVO selectAdjstReqOpenExamplePopCn(AdjstReqVO adjstReqVO) throws Exception {
|
||||
return adjstReqDAO.selectAdjstReqOpenExamplePopCn(adjstReqVO);
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
package kcc.kccadr.adjst.web;
|
||||
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
@ -17,6 +18,8 @@ import org.json.simple.JSONArray;
|
||||
import org.json.simple.JSONObject;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.core.env.SystemEnvironmentPropertySource;
|
||||
import org.springframework.http.HttpStatus;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.ModelMap;
|
||||
@ -46,6 +49,7 @@ import kcc.com.cmm.util.StringUtil;
|
||||
import kcc.com.utl.fcc.service.EgovStringUtil;
|
||||
import kcc.com.utl.user.service.CheckAdrProcessUtil;
|
||||
import kcc.kccadr.accdnt.crtfc.service.CrtfcService;
|
||||
import kcc.kccadr.adjPgrMgr.exmp.cmm.ExmpManageVO;
|
||||
import kcc.kccadr.adjst.service.AdjstReqService;
|
||||
import kcc.kccadr.adjst.service.AdjstReqVO;
|
||||
import kcc.kccadr.cmm.KccadrConstants;
|
||||
@ -199,17 +203,26 @@ public class AdjstReqWebController {
|
||||
*/
|
||||
@RequestMapping("/web/kccadr/adjst/popup/adjstReqOpenExamplePop.do")
|
||||
public String adjstReqOpenExamplePop(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception {
|
||||
AdjstReqVO expm = adjstReqService.selectAdjstReqOpenExamplePop(adjstReqVO);
|
||||
if (expm != null && StringUtils.isNotBlank(expm.getAtchFileId())) {
|
||||
FileVO fileVO = new FileVO();
|
||||
fileVO.setAtchFileId(expm.getAtchFileId());
|
||||
List<FileVO> fileList = fileService.selectFileInfs(fileVO);
|
||||
model.addAttribute("fileList", fileList);
|
||||
}
|
||||
model.addAttribute("expm", expm);
|
||||
model.addAttribute("ccTy", adjstReqVO.getCcTy());
|
||||
model.addAttribute("exmpCd", adjstReqVO.getExmpCd());
|
||||
return "/web/kccadr/adjst/popup/adjstReqOpenExamplePop";
|
||||
}
|
||||
|
||||
@RequestMapping("/web/kccadr/adjst/popup/adjstReqOpenExamplePopCn.do")
|
||||
public ResponseEntity<RestResponse> adjstReqOpenExamplePopCn(@RequestBody AdjstReqVO adjstReqVO) throws Exception {
|
||||
System.out.println("adjstReqVO.getExmpCd() :: "+ adjstReqVO.getExmpCd());
|
||||
System.out.println("adjstReqVO.getExmpCcTy() :: "+ adjstReqVO.getExmpCcTy());
|
||||
AdjstReqVO expm = adjstReqService.selectAdjstReqOpenExamplePopCn(adjstReqVO);
|
||||
|
||||
// if (expm != null && StringUtils.isNotBlank(expm.getAtchFileId())) {
|
||||
// FileVO fileVO = new FileVO();
|
||||
// fileVO.setAtchFileId(expm.getAtchFileId());
|
||||
// List<FileVO> fileList = fileService.selectFileInfs(fileVO);
|
||||
// model.addAttribute("fileList", fileList);
|
||||
// }
|
||||
return ResponseEntity.ok().body(new RestResponse(HttpStatus.OK, expm.getExmpCn(), LocalDateTime.now()));
|
||||
}
|
||||
|
||||
/**
|
||||
* 조정신청 구분선택 - 안내화면
|
||||
*/
|
||||
|
||||
@ -37,9 +37,11 @@ import org.springframework.http.HttpStatus;
|
||||
|
||||
public class RestResponse {
|
||||
|
||||
private HttpStatus status;
|
||||
private HttpStatus status;
|
||||
|
||||
private String data;
|
||||
private String data;
|
||||
|
||||
private String dataSub;
|
||||
|
||||
private LocalDateTime timestamp;
|
||||
|
||||
@ -51,6 +53,13 @@ public class RestResponse {
|
||||
this.timestamp = timestamp;
|
||||
}
|
||||
|
||||
public RestResponse(HttpStatus status, String data, String dataSub, LocalDateTime timestamp) {
|
||||
this.status = status;
|
||||
this.data = data;
|
||||
this.dataSub = dataSub;
|
||||
this.timestamp = timestamp;
|
||||
}
|
||||
|
||||
public RestResponse(HttpStatus status, List<?> dataList, String data, LocalDateTime timestamp) {
|
||||
this.status = status;
|
||||
this.dataList = dataList;
|
||||
@ -66,12 +75,12 @@ public class RestResponse {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
public String getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.data = message;
|
||||
public void setData(String data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public LocalDateTime getTimestamp() {
|
||||
@ -90,6 +99,15 @@ public class RestResponse {
|
||||
this.dataList = dataList;
|
||||
}
|
||||
|
||||
public String getDataSub() {
|
||||
return dataSub;
|
||||
}
|
||||
|
||||
public void setDataSub(String dataSub) {
|
||||
this.dataSub = dataSub;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -123,7 +123,7 @@
|
||||
,LAST_UPDUSR_ID
|
||||
) VALUES (
|
||||
#adrSeq#
|
||||
,"400000"
|
||||
,'400000'
|
||||
,#adrNo#
|
||||
,#reqOlCd#
|
||||
,#reqCn1#
|
||||
|
||||
@ -859,7 +859,8 @@
|
||||
AND EDT_SN = #edtSn#
|
||||
AND EDT_TY = #edtTy#
|
||||
</update>
|
||||
<select id="AdjstReqDAO.selectAdjstReqOpenExamplePop" parameterClass="AdjstReqVO" resultClass="AdjstReqVO">
|
||||
|
||||
<select id="AdjstReqDAO.selectAdjstReqOpenExamplePopCn" parameterClass="AdjstReqVO" resultClass="AdjstReqVO">
|
||||
SELECT
|
||||
T1.EXMP_TIT AS exmpTit
|
||||
,T1.ATCH_FILE_ID AS atchFileId
|
||||
@ -871,8 +872,8 @@
|
||||
INNER JOIN ADR_EXMP_DTL T2
|
||||
ON T1.EXMP_CC_TY = T2.EXMP_CC_TY
|
||||
WHERE 1=1
|
||||
AND T1.EXMP_CC_TY = #ccTy#
|
||||
AND T2.EXMP_CD = #exmpCd#
|
||||
AND T1.EXMP_CC_TY = #exmpCcTy# <!-- 저작물 종류-->
|
||||
AND T2.EXMP_CD = #exmpCd# <!-- 01:신청취지, 02:신청원인 -->
|
||||
</select>
|
||||
|
||||
<!-- 답변서 예문 select -->
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
<application generated-by="eclipse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_1.xsd">
|
||||
|
||||
<classpath>
|
||||
<dir name="D:/Development/git_repository/kcc_adr_advc_git/target/classes">
|
||||
<dir name="${rebel.workspace.path}/kcc_adr_advc_git/target/classes">
|
||||
</dir>
|
||||
</classpath>
|
||||
|
||||
|
||||
@ -34,45 +34,93 @@
|
||||
//$('#oldDe').text(moment('<c:out value="${info.adrEndDeDay}" />').format('YYYY-MM-DD'));
|
||||
//$('#newDe').text(moment('<c:out value="${info.adrEndDeDay}" />').add(1, 'months').format('YYYY-MM-DD'));
|
||||
|
||||
function fncClose() {
|
||||
window.close();
|
||||
}
|
||||
|
||||
/*
|
||||
* 저작물 변경 event
|
||||
*/
|
||||
$('#exmpCcTy').on('change', function(){
|
||||
fn_selectCn();
|
||||
});
|
||||
|
||||
/*
|
||||
* 등록버튼 click event
|
||||
*/
|
||||
$('#redBtn').on('click', function(){
|
||||
var exmpCd = $("#exmpCd").val();
|
||||
console.log(exmpCd.replace(/(^0+)/, ""));
|
||||
var perId = '#reqCn'+exmpCd.replace(/(^0+)/, "");
|
||||
$(opener.document).find(perId).text($('#exmpCn').text());
|
||||
window.close();
|
||||
|
||||
});
|
||||
|
||||
/*
|
||||
* 상세내용 select
|
||||
*/
|
||||
function fn_selectCn(){
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/kccadr/adjst/popup/adjstReqOpenExamplePopCn.do",
|
||||
data: JSON.stringify({exmpCd : $("#exmpCd").val()
|
||||
,exmpCcTy : $("#exmpCcTy").val() }),
|
||||
dataType:'json',
|
||||
async: false,
|
||||
processData: false,
|
||||
contentType: "application/json",
|
||||
cache: false,
|
||||
success: function (data) {
|
||||
if(data.status == "OK"){
|
||||
console.log('data : ', data);
|
||||
$('#exmpCn').text(data.data);
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
},
|
||||
error: function (e) { alert("조회에 실패하였습니다."); console.log("ERROR : ", e); }
|
||||
});
|
||||
}
|
||||
|
||||
fn_selectCn();
|
||||
});
|
||||
|
||||
function fncClose() {
|
||||
window.close();
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<form:form id="p" name="p" method="post" onsubmit="return false;">
|
||||
<input type="hidden" id="exmpCd" name="exmpCd" value="${exmpCd }"/>
|
||||
|
||||
<div class="area_popup case_change" style="width: 550px;">
|
||||
<div class="cont_popup">
|
||||
<p class="tb_tit"><kc:code codeId="CC040" code="${expm.expmCd}"/></p>
|
||||
<table class="pop_tbType01">
|
||||
<colgroup>
|
||||
<col style="width: 50%;">
|
||||
<col style="width: auto;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<p>
|
||||
<c:choose>
|
||||
<c:when test="${not empty expm.expmCn}">
|
||||
<c:out value="${fn:replace(expm.expmCn, crlf , '<br/>')}" escapeXml="false" />
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
등록된 내용이 없습니다.
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p class="tb_tit"><kc:code codeId="CC040" code="${exmpCd}"/></p>
|
||||
<table class="popup_tbType01 t_center">
|
||||
<colgroup>
|
||||
<col style="width: 20%;">
|
||||
<col style="width: 80%;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="line-height: 30px; text-align: left;">
|
||||
<kc:code codeId="CC040" code="${exmpCd}"/>
|
||||
</td>
|
||||
<td style="line-height: 30px; text-align: left;">
|
||||
<kc:select codeId="CC002" id="exmpCcTy" selectedValue="${ccTy}"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="line-height: 30px; text-align: left;">
|
||||
내용
|
||||
</td>
|
||||
<td id="exmpCn" style="line-height: 30px; text-align: left;" >
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="btn_wrap btn_layout04">
|
||||
<button class="btnType06" onclick="fncClose()">확인</button>
|
||||
<button class="btnType06" id="redBtn">등록</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -38,13 +38,13 @@
|
||||
<validator:javascript formName="model" staticJavascript="false" xhtml="true" cdata="false"/>
|
||||
<script type="text/javaScript" language="javascript">
|
||||
|
||||
function openExampleAdminPop(expmCd) {
|
||||
function openExampleAdminPop(exmpCd) {
|
||||
|
||||
var pop = document.pop;
|
||||
pop.ccTy.value = $('#ccTy').val();
|
||||
pop.expmCd.value = expmCd;
|
||||
pop.exmpCd.value = exmpCd;
|
||||
|
||||
commonPopWindowopenForm("/kccadr/adjPgrMgr/apm/popup/adjstReqOpenExamplePop.do", '600', '400', "openExampleAdminPop", $('#pop'));
|
||||
commonPopWindowopenForm("/kccadr/adjPgrMgr/apm/popup/adjstReqOpenExamplePop.do", '500', '400', "openExampleAdminPop", $('#pop'));
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
@ -1603,7 +1603,7 @@ function openExampleAdminPop(expmCd) {
|
||||
<input type="hidden" id="adrAvoidSeq" name="adrAvoidSeq" value="">
|
||||
<input type="hidden" id="agntSeq" name="agntSeq" value=""> -->
|
||||
<input type="hidden" name="ccTy" value="">
|
||||
<input type="hidden" id="expmCd" name="expmCd" value="">
|
||||
<input type="hidden" id="exmpCd" name="exmpCd" value="">
|
||||
</form>
|
||||
|
||||
<form:form commandName="adrVO" name="adrVO" method="post" enctype="multipart/form-data">
|
||||
|
||||
@ -40,9 +40,9 @@
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<form id="regForm" name="regForm" method="post">
|
||||
<input type="hidden" id="adrSeq" name="adrSeq" value=""/>
|
||||
</form>
|
||||
<%-- <form id="regForm" name="regForm" method="post"> --%>
|
||||
<!-- <input type="hidden" id="adrSeq" name="adrSeq" value=""/> -->
|
||||
<%-- </form> --%>
|
||||
|
||||
<form id="pop" name="pop" method="post" target="_self" action="/kccadr/adjPgrMgr/apm/popup/rpplConnNoPop.do">
|
||||
<input type="hidden" name="ccTy" value="">
|
||||
@ -1392,6 +1392,10 @@
|
||||
</div>
|
||||
</div>
|
||||
</form:form>
|
||||
<form id="nextGoPageForm" action="<c:url value='/kccadr/adjReqMgOff/adjReqMgrPastProgRegist.do'>">
|
||||
<input id="adrSeq" name="adrSeq" value="">
|
||||
|
||||
</form>
|
||||
<!-- //cont -->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -0,0 +1,166 @@
|
||||
<!DOCTYPE html>
|
||||
<%@ page language="java" contentType="text/html; charset=utf-8"
|
||||
pageEncoding="utf-8"%>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
||||
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt_rt" %>
|
||||
<%
|
||||
/**
|
||||
* @Class Name : AdjustDeptManagerList.jsp
|
||||
* @Description : 조정부관리
|
||||
* @Modification Information
|
||||
* @
|
||||
* @ 수정일 수정자 수정내용
|
||||
* @ ------- -------- ---------------------------
|
||||
* @ 2021.08.09 김봉호 최초 생성
|
||||
* @author 김봉호
|
||||
* @since 2021.08.21
|
||||
* @version 1.0
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
%>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<script type="text/javascript">
|
||||
|
||||
// function fncSelectConciliatorManageList(){
|
||||
// linkPage(1);
|
||||
// }
|
||||
|
||||
// function linkPage(pageNo){
|
||||
// var listForm = document.listForm ;
|
||||
// listForm.pageIndex.value = pageNo ;
|
||||
// listForm.searchCondition.value = $('#searchCondition').val();
|
||||
// listForm.searchKeyword.value = $('#searchKeyword').val();
|
||||
// listForm.action = "<c:url value='/kccadr/adjPgrMgr/exmp/exmpAppManagerList.do'/>";
|
||||
// listForm.submit();
|
||||
// }
|
||||
|
||||
// function fncCreate() {
|
||||
// var listForm = document.listForm ;
|
||||
// listForm.action = "<c:url value='/kccadr/adjPgrMgr/exmp/exmpAppManagerCreate.do'/>";
|
||||
// listForm.submit();
|
||||
// }
|
||||
|
||||
|
||||
|
||||
// function fn_egov_checkAll(){
|
||||
// var FLength = document.getElementsByName("memSeqArr").length;
|
||||
// var checkAllValue = document.getElementById('checkAll').checked;
|
||||
|
||||
// //undefined
|
||||
// if( FLength == 1){
|
||||
// document.getElementById("memSeqArr0").checked = checkAllValue;
|
||||
// } else {
|
||||
// for(var i=0; i < FLength; i++) {
|
||||
// document.getElementsByName("memSeqArr")[i].checked = checkAllValue;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
|
||||
// function fncDetailPage(exmpMgrId){
|
||||
// var listForm = document.listForm ;
|
||||
// listForm.exmpMgrId.value = exmpMgrId;
|
||||
// listForm.action = "<c:url value='/kccadr/adjPgrMgr/exmp/exmpAppManagerDetail.do'/>";
|
||||
// listForm.submit();
|
||||
// }
|
||||
|
||||
</script>
|
||||
<title>사건진행정보</title>
|
||||
</head>
|
||||
<body>
|
||||
<form:form id="listForm" name="listForm" method="post">
|
||||
<%-- <input type="hidden" name="pageIndex" value="<c:out value='${exmpAppManageVO.pageIndex}' default='1' />"/> --%>
|
||||
<%-- <input type="hidden" name="searchSortCnd" value="<c:out value="${exmpAppManageVO.searchSortCnd}" />" /> --%>
|
||||
<%-- <input type="hidden" name="searchSortOrd" value="<c:out value="${exmpAppManageVO.searchSortOrd}" />" /> --%>
|
||||
<%-- <input type="hidden" name="codeId" value="<c:out value="${exmpAppManageVO.codeId}" />" /> --%>
|
||||
<!-- <input type="hidden" name="expmCcTy" value="" /> -->
|
||||
<!-- <input type="hidden" name="exmpMgrId" value="" /> -->
|
||||
|
||||
<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>오프라인 조정관리</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>과거사건등록</p>
|
||||
</li>
|
||||
<li><span class="cur_nav">사건진행정보</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- //cont_tit -->
|
||||
|
||||
<div class="cont">
|
||||
<!-- list_top -->
|
||||
<div class="list_top">
|
||||
<p>총 진행 회차 : <span>??</span>건</p>
|
||||
<div class="list_util">
|
||||
<button class="btn_search" onclick="fncSelectConciliatorManageList(); return false;">검색</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //list_top -->
|
||||
<!-- list -->
|
||||
<div class="list tbType01">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col style="width: 10%">
|
||||
<col style="width: auto">
|
||||
<col style="width: 10%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>회차</th>
|
||||
<th>결과</th>
|
||||
<th>등록/삭제</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
1
|
||||
</td>
|
||||
<td>
|
||||
1
|
||||
</td>
|
||||
<td>
|
||||
<button class="btn_search" onclick="fncSelectConciliatorManageList(); return false;">검색</button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- //list -->
|
||||
|
||||
<div class="btn_wrap btn_layout02">
|
||||
<button class="btnType02" onclick="fncCreate(); return false;" >등록</button>
|
||||
</div>
|
||||
|
||||
<!-- page -->
|
||||
<!-- <div class="page"> -->
|
||||
<%-- <ui:pagination paginationInfo = "${paginationInfo}" type="image" jsFunction="linkPage" /> --%>
|
||||
<!-- </div> -->
|
||||
<!-- //page -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //cont -->
|
||||
<!-- //cont -->
|
||||
|
||||
</form:form>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -32,42 +32,94 @@ $(document).ready(function(){
|
||||
$('[data-tooltip="fee_info_popup"]').eq(1).focus();
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
* 저작물 변경 event
|
||||
*/
|
||||
$('#exmpCcTy').on('change', function(){
|
||||
fn_selectCn();
|
||||
});
|
||||
|
||||
/*
|
||||
* 등록버튼 event
|
||||
*/
|
||||
$('#redBtn').on('click', function(){
|
||||
var exmpCd = $("#exmpCd").val();
|
||||
console.log(exmpCd.replace(/(^0+)/, ""));
|
||||
var perId = '#reqCn'+exmpCd.replace(/(^0+)/, "");
|
||||
$(perId).text($('#exmpCn').text());
|
||||
});
|
||||
|
||||
/*
|
||||
* 상세내용 select
|
||||
*/
|
||||
function fn_selectCn(){
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/kccadr/adjst/popup/adjstReqOpenExamplePopCn.do",
|
||||
data: JSON.stringify({exmpCd : $("#exmpCd").val()
|
||||
, exmpCcTy : $("#exmpCcTy").val() }),
|
||||
dataType:'json',
|
||||
async: false,
|
||||
processData: false,
|
||||
contentType: "application/json",
|
||||
cache: false,
|
||||
success: function (data) {
|
||||
if(data.status == "OK"){
|
||||
console.log('data : ', data);
|
||||
$('#exmpCn').text(data.data);
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
},
|
||||
error: function (e) { alert("조회에 실패하였습니다."); console.log("ERROR : ", e); }
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
fn_selectCn();
|
||||
|
||||
})
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="popup_wrap fee_info_popup" style="max-width: 580px;" tabindex="0" data-tooltip-con="fee_info_popup" data-focus="fee_info_popup" data-focus-prev="fee_info_popup_close">
|
||||
<input type="hidden" id="exmpCd" name="exmpCd" value="${exmpCd }"/>
|
||||
<div class="popup_tit">
|
||||
<p>조정신청 예문</p> <button class="btn_popup_close tooltip-close" data-focus="fee_info_popup_close" title="팝업 닫기"><i></i></button>
|
||||
</div>
|
||||
<div class="popup_cont">
|
||||
<c:if test="${not empty expm.expmCd}">
|
||||
<c:if test="${not empty exmpCd}">
|
||||
<div class="cont_tit03">
|
||||
* <kc:code codeId="CC040" code="${expm.expmCd}"/>
|
||||
* <kc:code codeId="CC040" code="${exmpCd}"/>
|
||||
</div>
|
||||
</c:if>
|
||||
<table class="popup_tbType01 t_center">
|
||||
<colgroup>
|
||||
<col style="width: 60%;">
|
||||
<col style="width: 40%;">
|
||||
<col style="width: 20%;">
|
||||
<col style="width: 80%;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td colspan="2" style="line-height: 30px; text-align: left;">
|
||||
<c:choose>
|
||||
<c:when test="${not empty expm.expmCn}">
|
||||
<c:out value="${fn:replace(expm.expmCn, crlf , '<br/>')}" escapeXml="false" />
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
등록된 내용이 없습니다.
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<td style="line-height: 30px; text-align: left;">
|
||||
<kc:code codeId="CC040" code="${exmpCd}"/>
|
||||
</td>
|
||||
<td style="line-height: 30px; text-align: left;">
|
||||
<kc:select codeId="CC002" name="exmpCcTy" id="exmpCcTy" selectedValue="${ccTy}"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="line-height: 30px; text-align: left;">
|
||||
내용
|
||||
</td>
|
||||
<td id="exmpCn" style="line-height: 30px; text-align: left;" >
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="btn_wrap">
|
||||
<button class="btnType01 tooltip-close" data-focus="fee_info_popup_close" data-focus-next="fee_info_popup">닫기</button>
|
||||
<!-- <button class="btnType01 tooltip-close" data-focus="fee_info_popup_close" data-focus-next="fee_info_popup">닫기</button> -->
|
||||
<button class="btnType01 tooltip-close" id="redBtn">등록</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -1059,12 +1059,12 @@ var AdjstReq = {
|
||||
, "adjstHostoryPop"
|
||||
);
|
||||
},
|
||||
openExamplePop : function(expmCd){
|
||||
openExamplePop : function(exmpCd){
|
||||
commonPopLayeropen(
|
||||
"/web/kccadr/adjst/popup/adjstReqOpenExamplePop.do"
|
||||
, 1100
|
||||
, 600
|
||||
, {ccTy : $("#ccTy").val(), expmCd : expmCd}
|
||||
, {ccTy : $("#ccTy").val(), exmpCd : exmpCd}
|
||||
, "N"
|
||||
, "openExamplePop"
|
||||
);
|
||||
|
||||
@ -1080,7 +1080,8 @@
|
||||
success: function (data) {
|
||||
console.log('data : ', data);
|
||||
if(data.status == 'OK'){
|
||||
alert(data.message);
|
||||
alert(data.data);
|
||||
dataSub
|
||||
}
|
||||
else if(data.status == 'Unauthorized')
|
||||
{
|
||||
|
||||
@ -54,6 +54,8 @@
|
||||
.c_ea5404{color: #ea5404;}
|
||||
|
||||
.read-only,.disabled{background-color: #eee !important; color: #aaa !important; font-size: 16px;}
|
||||
|
||||
.cf_text02{font-size: 16px; font-weight: 300; color: #e40000; text-align: right; margin: 10px 0 0 0;}
|
||||
/* //서브 공통 */
|
||||
|
||||
/* 로그인 */
|
||||
|
||||
@ -25,26 +25,51 @@ main{width: 100%; height: 100%; margin-top: 135px; padding-bottom: 90px; backgro
|
||||
/* //메인비주얼 */
|
||||
|
||||
/* 바로가기 */
|
||||
.baro_cont{padding: 0 20px; box-sizing: border-box;}
|
||||
.baro_cont .inner{max-width: 1200px; width: 100%; height: 180px; position: relative; display: flex; margin: -90px auto 0 auto; background-color: #fff; border-radius: 10px; margin-top: -90px; box-sizing: border-box; box-shadow: 0 0 10px rgba(0,0,0,0.15); z-index: 12;}
|
||||
.baro_cont a{width: calc(100% / 5); text-align: center; height: 100%; font-size: 21px; font-weight: 500; letter-spacing: -0.8px; position: relative; padding: 20px 0; box-sizing: border-box; transition: color 0.3s ease-in-out;}
|
||||
.baro_cont a:hover{font-size: 22px; color: #ea5404; transition: color 0.1s linear;}
|
||||
.baro_cont a::before{position: absolute; content: " "; width: calc(100% + 10px); height: calc(100% + 10px); border: 5px solid #ea5404; border-radius: 10px; left: 50%; top: 50%; transform: translate(-50%,-50%); background-color: #fff; z-index: 1; opacity: 0; transition: border 0.1s linear, opacity 0.1s linear; box-shadow: 0 0 10px rgba(0,0,0,0.5);}
|
||||
.baro_cont a:hover::before{opacity: 1; transition: border 0.1s linear, opacity 0.1s linear;}
|
||||
.baro_cont{padding: 0 20px; box-sizing: border-box; z-index: 21; position: relative;}
|
||||
.baro_cont .inner{max-width: 1200px; width: 100%; height: 180px; position: relative; display: flex; margin: -90px auto 0 auto; background-color: #fff; border-radius: 10px; margin-top: -90px; box-sizing: border-box; box-shadow: 0 0 10px rgba(0,0,0,0.15); z-index: 24;}
|
||||
.baro_cont a{width: calc(100% / 5); text-align: center; height: 100%; font-size: 21px; font-weight: 500; letter-spacing: -0.8px; position: relative; padding: 20px 0; box-sizing: border-box; transition: color 0.3s ease-in-out; z-index: 0;}
|
||||
.baro_cont a.on i,.baro_cont a.on p{position: relative; z-index: 29;}
|
||||
.baro_cont a.on{font-size: 22px; color: #ea5404; transition: color 0.1s linear; z-index: 25;}
|
||||
.baro_cont a::before{position: absolute; content: " "; width: calc(100% + 10px); height: calc(100% + 10px); border: 5px solid #ea5404; border-radius: 10px; left: 50%; top: 50%; transform: translate(-50%,-50%); background-color: #fff; z-index: 1; opacity: 0; transition: border 0.1s linear, opacity 0.1s linear; box-shadow: 0 0 10px rgba(0,0,0,0.5);z-index: 28;}
|
||||
.baro_cont a.on::before{opacity: 1; transition: border 0.1s linear, opacity 0.1s linear;}
|
||||
.baro_cont a::after{position: absolute; content: " "; width: 1px; height: calc(100% - 40px); background-color: #dadada; right: 0; top: 50%; transform: translateY(-50%);}
|
||||
.baro_cont a:last-child:after{display: none;}
|
||||
.baro_cont i{width: 60px; height: 60px; display: block; background-repeat: no-repeat; background-position: center; background-size: contain; margin: 18px auto 20px auto; position: relative; z-index: 1; transition: background-image 0.3s ease-in-out;}
|
||||
.baro_cont p{position: relative; z-index: 1;}
|
||||
|
||||
.baro_cont i{position: relative; width: 60px; height: 60px; display: block; background-repeat: no-repeat; background-position: center; background-size: contain; margin: 18px auto 20px auto; position: relative; transition: background-image 0.3s ease-in-out;}
|
||||
.baro_cont p{position: relative;}
|
||||
.baro_cont a:nth-child(1) i{background-image: url(/kccadrPb/usr/image/main/icon_baro01.png);}
|
||||
.baro_cont a:nth-child(1):hover i{background-image: url(/kccadrPb/usr/image/main/icon_baro01_hover.png);}
|
||||
.baro_cont a:nth-child(1).on i{background-image: url(/kccadrPb/usr/image/main/icon_baro01_hover.png);}
|
||||
.baro_cont a:nth-child(2) i{background-image: url(/kccadrPb/usr/image/main/icon_baro02.png);}
|
||||
.baro_cont a:nth-child(2):hover i{background-image: url(/kccadrPb/usr/image/main/icon_baro02_hover.png);}
|
||||
.baro_cont a:nth-child(2).on i{background-image: url(/kccadrPb/usr/image/main/icon_baro02_hover.png);}
|
||||
.baro_cont a:nth-child(3) i{background-image: url(/kccadrPb/usr/image/main/icon_baro03.png);}
|
||||
.baro_cont a:nth-child(3):hover i{background-image: url(/kccadrPb/usr/image/main/icon_baro03_hover.png);}
|
||||
.baro_cont a:nth-child(3).on i{background-image: url(/kccadrPb/usr/image/main/icon_baro03_hover.png);}
|
||||
.baro_cont a:nth-child(4) i{background-image: url(/kccadrPb/usr/image/main/icon_baro04.png);}
|
||||
.baro_cont a:nth-child(4):hover i{background-image: url(/kccadrPb/usr/image/main/icon_baro04_hover.png);}
|
||||
.baro_cont a:nth-child(4).on i{background-image: url(/kccadrPb/usr/image/main/icon_baro04_hover.png);}
|
||||
.baro_cont a:nth-child(5) i{background-image: url(/kccadrPb/usr/image/main/icon_baro05.png);}
|
||||
.baro_cont a:nth-child(5):hover i{background-image: url(/kccadrPb/usr/image/main/icon_baro05_hover.png);}
|
||||
.baro_cont a:nth-child(5).on i{background-image: url(/kccadrPb/usr/image/main/icon_baro05_hover.png);}
|
||||
|
||||
.baro_cont.experience_cont a i{width: 48px;}
|
||||
.baro_cont.experience_cont a:nth-child(2) i{background-image: url(/kccadrPb/usr/image/main/icon_baro06.png);}
|
||||
.baro_cont.experience_cont a:nth-child(2).on i{background-image: url(/kccadrPb/usr/image/main/icon_baro06_hover.png);}
|
||||
.baro_cont.experience_cont a:nth-child(3) i{background-image: url(/kccadrPb/usr/image/main/icon_baro07.png);}
|
||||
.baro_cont.experience_cont a:nth-child(3).on i{background-image: url(/kccadrPb/usr/image/main/icon_baro07_hover.png);}
|
||||
.baro_cont.experience_cont a:nth-child(4) i{background-image: url(/kccadrPb/usr/image/main/icon_baro08.png);}
|
||||
.baro_cont.experience_cont a:nth-child(4).on i{background-image: url(/kccadrPb/usr/image/main/icon_baro08_hover.png);}
|
||||
.baro_cont.experience_cont a:nth-child(5) i{background-image: url(/kccadrPb/usr/image/main/icon_baro09.png);}
|
||||
.baro_cont.experience_cont a:nth-child(5).on i{background-image: url(/kccadrPb/usr/image/main/icon_baro09_hover.png);}
|
||||
.baro_cont.experience_cont a:nth-child(6) i{background-image: url(/kccadrPb/usr/image/main/icon_baro10.png);}
|
||||
.baro_cont.experience_cont a:nth-child(6).on i{background-image: url(/kccadrPb/usr/image/main/icon_baro10_hover.png);}
|
||||
|
||||
.mask{position: fixed; display: none; width: 100%; height: 100%; left: 0; top: 0; background-color: rgba(0,0,0,0.5); z-index: 25;}
|
||||
.tooltip_box{position: absolute; display: none; background-color: transparent; top: -100px; left: -10px; width: 500%; height: calc(100% - 30px); z-index: 30;}
|
||||
.tooltip_type01{display: inline-flex; justify-content: space-between; align-items: center; background-color: #fff; padding: 30px 30px 30px 42px; box-sizing: border-box; z-index: 99; border-radius: 5px; line-height: 1.3; box-shadow: 4px 8px 8px rgba(0,0,0,0.2); color: #222; text-align: left; margin-left: 60px;}
|
||||
.baro_cont a:nth-child(4) .tooltip_box{left: -10px; width: 400%;}
|
||||
.baro_cont a:nth-child(5) .tooltip_box{left: auto; right: -10px;}
|
||||
.baro_cont a:nth-child(6) .tooltip_box{left: auto; right: -10px;}
|
||||
.tooltip_type01>*{display: inline-block; vertical-align: middle;}
|
||||
.tooltip_tit01{font-size: 22px;}
|
||||
.tooltip_tit02{font-size: 16px; margin-top: 10px;}
|
||||
.tooltip_type01 button{width: 168px; height: 48px; background-color: #ea5404; border-radius: 5px; color: #fff; font-size: 18px; float: right; margin-top: 22px; margin-left: 40px}
|
||||
/* //바로가기 */
|
||||
|
||||
.btm_cont{padding: 0 20px; box-sizing: border-box;}
|
||||
@ -170,6 +195,9 @@ main{width: 100%; height: 100%; margin-top: 135px; padding-bottom: 90px; backgro
|
||||
.baro_cont a:hover{font-size: 20px;}
|
||||
.baro_cont a::before{width: calc(100% + 10px); height: calc(100% + 10px);}
|
||||
.baro_cont i{width: 45px; height: 45px; margin: 15px auto;}
|
||||
|
||||
.tooltip_box{position: fixed; max-width: 100%; width: calc(100% - 30px); height: 326px; left: 50% !important; top: 260px;transform: translateX(-50%);}
|
||||
.baro_cont a:nth-child(4) .tooltip_type01{top: 260px;}
|
||||
/* //바로가기 */
|
||||
|
||||
/* 조정신청 안내 */
|
||||
@ -229,6 +257,18 @@ main{width: 100%; height: 100%; margin-top: 135px; padding-bottom: 90px; backgro
|
||||
/* //팝업존 */
|
||||
}
|
||||
|
||||
@media all and (max-width: 840px){
|
||||
.tooltip_tit01{font-size: 18px; font-weight: 500;}
|
||||
.tooltip_tit02{font-size: 14px;}
|
||||
.tooltip_box button{margin-top: 16px; margin-left: 0;}
|
||||
}
|
||||
|
||||
@media all and (max-width: 700px){
|
||||
.tooltip_type01 .text_area{width: 100%; display: block;text-align: center;}
|
||||
.tooltip_type01 button{float: none; display: block; text-align: center; margin: 20px auto 0;}
|
||||
.tooltip_box{top: 200px;}
|
||||
}
|
||||
|
||||
@media all and (max-width: 640px){
|
||||
|
||||
.btm_cont{padding-bottom: 40px;}
|
||||
@ -250,6 +290,9 @@ main{width: 100%; height: 100%; margin-top: 135px; padding-bottom: 90px; backgro
|
||||
.area_pz .pz_img.img02{background-color: #7c50cc;}
|
||||
.area_pz .pz_img.img03{background-color: #506acc;} */
|
||||
/* //팝업존 */
|
||||
|
||||
.mask{background-color: transparent; z-index: -1;}
|
||||
.tooltip_box{display: none !important;}
|
||||
}
|
||||
|
||||
@media all and (max-width: 530px){
|
||||
|
||||
BIN
src/main/webapp/kccadrPb/usr/datepicker/icon_baro06.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
src/main/webapp/kccadrPb/usr/datepicker/icon_baro06_hover.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
src/main/webapp/kccadrPb/usr/datepicker/icon_baro07.png
Normal file
|
After Width: | Height: | Size: 739 B |
BIN
src/main/webapp/kccadrPb/usr/datepicker/icon_baro07_hover.png
Normal file
|
After Width: | Height: | Size: 816 B |
BIN
src/main/webapp/kccadrPb/usr/datepicker/icon_baro08.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
src/main/webapp/kccadrPb/usr/datepicker/icon_baro08_hover.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
src/main/webapp/kccadrPb/usr/datepicker/icon_baro09.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
src/main/webapp/kccadrPb/usr/datepicker/icon_baro09_hover.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
src/main/webapp/kccadrPb/usr/datepicker/icon_baro10.png
Normal file
|
After Width: | Height: | Size: 707 B |
BIN
src/main/webapp/kccadrPb/usr/datepicker/icon_baro10_hover.png
Normal file
|
After Width: | Height: | Size: 712 B |
@ -43,10 +43,11 @@
|
||||
<ul class="dep01">
|
||||
<li><a href="#">XX 목록(완료 8.13)</a></li>
|
||||
<li><a href="#">XX 상세(작업중)</a></li>
|
||||
<li><a href="/kccadrPb/usr/index2.html">메인 체험하기(9.15)</a></li>
|
||||
<li><a href="/kccadrPb/usr/sub02_1_04.html">신청취지/원인 (수정 9.15)</a></li>
|
||||
<li><a href="/kccadrPb/usr/sub02_1_01.html">조정신청 안내(완료)</a></li>
|
||||
<li><a href="/kccadrPb/usr/sub02_1_02.html">신청인 정보(완료) (수정 10.7, 이전신청 불러오기 팝업 추가)</a></li>
|
||||
<li><a href="/kccadrPb/usr/sub02_1_03.html">피신청인 정보(완료)</a></li>
|
||||
<li><a href="/kccadrPb/usr/sub02_1_04.html">신청취지/원인(완료)</a></li>
|
||||
<li><a href="/kccadrPb/usr/sub02_1_list_detail.html">조정신청상세(완료 8.19, 수정요청 팝업 포함)</a></li>
|
||||
<li><a href="/kccadrPb/usr/calendar.html">나의 사건 관리 > 조정일정현황(완료 8.19)</a></li>
|
||||
<li><a href="/kccadrPb/usr/sub02_2.html">조정진행상세(완료 8.19)</a></li>
|
||||
|
||||
82
src/main/webapp/kccadrPb/usr/guide2022.html
Normal file
@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>가이드</title>
|
||||
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
|
||||
* {padding: 0;margin: 0;text-decoration: none;color: inherit;font-family: 'Noto Sans KR', sans-serif;}
|
||||
ul,li {list-style: none;}
|
||||
body {padding: 50px;}
|
||||
.tab {display: flex;}
|
||||
.tab li {border: 1px solid #d5d5d5;width: 150px;text-align: center;padding: 10px 0;margin-right: 10px;}
|
||||
.wrap {display: flex;}
|
||||
.area_left,.area_right {width: 50%;}
|
||||
.area_right div {min-height: 50%;}
|
||||
.menu {max-width: 1200px;margin: 0 auto;margin-bottom: 15px;}
|
||||
.menu_tit {font-weight: 700;font-size: 16px;letter-spacing: -0.5px;max-width: 1200px;margin-top: 20px;margin-bottom: 10px;text-align: left;}
|
||||
.dep01 li {position: relative;}
|
||||
.dep01 li::after {position: absolute;content: "-";left: 10px;}
|
||||
.dep01 li a {padding-left: 20px;font-size: 15px;}
|
||||
.dep01 li p {display: inline-block;padding-left: 20px;font-size: 15px;}
|
||||
.dep02 {padding-left: 20px;}
|
||||
.dep02 li::after {position: absolute;content: "·";left: 0px;}
|
||||
.dep02 li a {padding-left: 15px;font-size: 15px;}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<ul class="tab">
|
||||
<li><a href="/kccadrPb/usr/guide.html"><font style="color: red;">사용자 퍼블목록</font></a></li>
|
||||
<li><a href="/kccadrPb/adm/guide.html">관리자 퍼블목록</a></li>
|
||||
</ul>
|
||||
<div class="wrap">
|
||||
<div class="area_left">
|
||||
<a href="/kccadrPb/usr/index.html">
|
||||
<p class="menu_tit">메인</p>
|
||||
</a>
|
||||
<div class="menu">
|
||||
<ul class="dep01">
|
||||
<li><a href="#">XX 목록(완료 8.13)</a></li>
|
||||
<li><a href="#">XX 상세(작업중)</a></li>
|
||||
<li><a href="/kccadrPb/usr/index2.html">메인 체험하기(수정 9.15)</a></li>
|
||||
<li><a href="/kccadrPb/usr/sub02_1_04.html">신청취지/원인 (수정 9.15)</a></li>
|
||||
</ul>
|
||||
<p class="menu_tit">남은내역</p>
|
||||
<div class="menu">
|
||||
<ul class="dep01">
|
||||
<!-- <li><a href="#">이용안내(예정)</a></li>
|
||||
<li><a href="#">조정안내(예정)</a></li> -->
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="area_right">
|
||||
<div><b>* 완료시 요청자가 내용 삭제</b>
|
||||
<div><b>개발자 요청사항</b>
|
||||
<ul class="dep01">
|
||||
<li>
|
||||
<p>
|
||||
xx 요청드려요~(요청 8.13 여현준)
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div><b>퍼블리셔 요청사항</b>
|
||||
<ul class="dep01">
|
||||
<li>
|
||||
<p>
|
||||
xx 확인 및 XX 부탁드려요~(요청 8.13 정수빈)
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
BIN
src/main/webapp/kccadrPb/usr/image/main/icon_baro06.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
src/main/webapp/kccadrPb/usr/image/main/icon_baro06_hover.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
src/main/webapp/kccadrPb/usr/image/main/icon_baro07.png
Normal file
|
After Width: | Height: | Size: 739 B |
BIN
src/main/webapp/kccadrPb/usr/image/main/icon_baro07_hover.png
Normal file
|
After Width: | Height: | Size: 816 B |
BIN
src/main/webapp/kccadrPb/usr/image/main/icon_baro08.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
src/main/webapp/kccadrPb/usr/image/main/icon_baro08_hover.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
src/main/webapp/kccadrPb/usr/image/main/icon_baro09.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
src/main/webapp/kccadrPb/usr/image/main/icon_baro09_hover.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
src/main/webapp/kccadrPb/usr/image/main/icon_baro10.png
Normal file
|
After Width: | Height: | Size: 707 B |
BIN
src/main/webapp/kccadrPb/usr/image/main/icon_baro10_hover.png
Normal file
|
After Width: | Height: | Size: 712 B |
497
src/main/webapp/kccadrPb/usr/index2.html
Normal file
@ -0,0 +1,497 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>저작권 전자조정시스템 - 메인</title>
|
||||
|
||||
<!-- css -->
|
||||
<!-- <link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.css"/kccadrPb/usr/>
|
||||
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css"/kccadrPb/usr/> -->
|
||||
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.1/css/swiper.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.1/css/swiper.min.css"> -->
|
||||
<link rel="stylesheet" href="/kccadrPb/usr/css/swiper.css">
|
||||
<link rel="stylesheet" href="/kccadrPb/usr/css/swiper.min.css">
|
||||
<link rel="stylesheet" href="/kccadrPb/usr/css/reset.css">
|
||||
<link rel="stylesheet" href="/kccadrPb/usr/css/font.css">
|
||||
<link rel="stylesheet" href="/kccadrPb/usr/css/common.css">
|
||||
<link rel="stylesheet" href="/kccadrPb/usr/css/main.css">
|
||||
|
||||
<!-- script -->
|
||||
<script src="/kccadrPb/usr/script/jquery-3.5.0.js"></script>
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.1/js/swiper.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.1/js/swiper.min.js"></script> -->
|
||||
<!-- <script src="https://unpkg.com/swiper/swiper-bundle.js"></script>
|
||||
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script> -->
|
||||
<!-- <script src="/kccadrPb/usr/script/swiper.js"></script> -->
|
||||
<script src="/kccadrPb/usr/script/swiper.js"></script>
|
||||
<script src="/kccadrPb/usr/script/swiper.min.js"></script>
|
||||
<script src="/kccadrPb/usr/script/common.js"></script>
|
||||
<script src="/kccadrPb/usr/script/main.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="skip_menu">
|
||||
<a href="#main" class="contGo" title="본문 바로가기">본문 바로가기</a>
|
||||
</div>
|
||||
<!-- header -->
|
||||
<header>
|
||||
<div class="gnb_wrap">
|
||||
<div class="inner">
|
||||
<div class="site">
|
||||
<img src="/kccadrPb/usr/image/common/gnb_logo.png" alt="한국저작권위원회">
|
||||
<a href="https://www.copyright.or.kr/main.do" target="_blank" title="새창열림">바로가기</a>
|
||||
</div>
|
||||
<div class="area_right">
|
||||
<p class="login_after">정수빈 <span>님</span></p>
|
||||
<a href="#">로그아웃</a>
|
||||
<a href="#">회원정보 수정</a>
|
||||
<div class="btn_util">
|
||||
<button class="btn_minus" title="글자 축소"></button>
|
||||
<button class="btn_plus" title="글자 확대"></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header">
|
||||
<div class="header_inner">
|
||||
<h1 class="logo"><a href="/kccadrPb/usr/index.html"><img src="/kccadrPb/usr/image/common/top_logo.png"
|
||||
alt="저작권 전자조정시스템 Copyright Electronic Coordination System"></a></h1>
|
||||
<div class="nav_wrap">
|
||||
<nav id="menu">
|
||||
<ul class="depth01">
|
||||
<li class="depth01_li"><a href="#" class="menu_link">조정신청</a>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">신청서 작성</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><a href="#" class="menu_link">조정신청관리</a>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">조정신청관리</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><a href="#" class="menu_link">조정진행관리</a>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">조정위원 조정진행</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><a href="#" class="menu_link">나의사건확인</a>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">신청 중 사건 조회</a></li>
|
||||
<li><a href="#">진행 중 사건 조회</a></li>
|
||||
<li><a href="#">비용결제</a></li>
|
||||
<li><a href="#">공동인증서 등록</a></li>
|
||||
<li><a href="#">조정일정현황</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><a href="#" class="menu_link">종료사건확인</a>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">종료 사건 조회</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div class="area_right">
|
||||
<button type="button" class="btn_mobile btn_login" title="로그인하기"></button>
|
||||
<!-- <button type="button" class="btn_mobile btn_logout" title="로그아웃하기"></button> -->
|
||||
<button type="button" class="btn_mobile btn_join" title="회원가입하기"></button>
|
||||
<!-- <button type="button" class="btn_mobile btn_usredit" title="회원정보수정하기"></button> -->
|
||||
<!-- <button class="btn_search" title="검색영역 열기"></button> -->
|
||||
<button class="btn_menu" title="전체메뉴 열기"></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<!-- //header -->
|
||||
|
||||
<!-- 전체메뉴 -->
|
||||
<div class="full_menu">
|
||||
<div class="inner">
|
||||
<h1 class="logo"><img src="/kccadrPb/usr/image/common/top_logo.png"
|
||||
alt="저작권 전자조정시스템 Copyright Electronic Coordination System"></h1>
|
||||
<ul class="depth01">
|
||||
<li class="depth01_li"><a href="#" class="menu_link">전자조정 안내</a>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">조정의 개념 및 효력</a></li>
|
||||
<li><a href="#">조정 대상</a></li>
|
||||
<li><a href="#">조정 절차</a></li>
|
||||
<li><a href="#">조정 비용</a></li>
|
||||
<li><a href="#">신청안내</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><a href="#" class="menu_link">전자조정 신청</a>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">조정 신청</a></li>
|
||||
<li><a href="#">간편 조정 신청</a></li>
|
||||
<li><a href="#">조정신청 대리인 신청</a></li>
|
||||
<li><a href="#">조정신청 취하</a></li>
|
||||
<li><a href="#">조정 경정 신청</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><a href="#" class="menu_link">사례/통계</a>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">조정사건조회</a></li>
|
||||
<li><a href="#">조정사례조회</a></li>
|
||||
<li><a href="#">조정통계</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><a href="#" class="menu_link">정보마당</a>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">공지사항</a></li>
|
||||
<li><a href="#">조정제도 안내 게시판</a></li>
|
||||
<li><a href="#">관련법조항 게시판</a></li>
|
||||
<li><a href="#">묻고답하기</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><a href="https://www.copyright.or.kr/customer-center/user-guide/privacy-policy/index.do" class="menu_link" target="_blank" title="새창열림">이용안내</a>
|
||||
<ul class="depth02">
|
||||
<li><a href="https://www.copyright.or.kr/customer-center/user-guide/privacy-policy/index.do" target="_blank" title="새창열림">개인정보처리방침 <i class="link"></i></a></li>
|
||||
<li><a href="https://www.copyright.or.kr/customer-center/user-guide/email-rejection/index.do" target="_blank" title="새창열림">이메일무단수집거부 <i class="link"></i></a></li>
|
||||
<li><a href="https://www.copyright.or.kr/customer-center/user-guide/customer-service-charter/index.do" target="_blank" title="새창열림">고객서비스헌장 <i class="link"></i></a></li>
|
||||
<li><a href="https://www.copyright.or.kr/customer-center/user-guide/policy/index.do" target="_blank" title="새창열림">저작권정책 <i class="link"></i></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<button class="btn_close" title="전체메뉴 닫기"></button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //전체메뉴 -->
|
||||
|
||||
<!-- 모바일메뉴 -->
|
||||
<div id="m_menu">
|
||||
<ul class="depth01">
|
||||
<li class="depth01_li"><button type="button" class="menu_tit" title="소메뉴 열기">전자조정 안내</button>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">조정의 개념 및 효력</a></li>
|
||||
<li><a href="#">조정 대상</a></li>
|
||||
<li><a href="#">조정 절차</a></li>
|
||||
<li><a href="#">조정 비용</a></li>
|
||||
<li><a href="#">신청안내</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><button type="button" class="menu_tit" title="소메뉴 열기">전자조정 신청</button>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">조정 신청</a></li>
|
||||
<li><a href="#">간편 조정 신청</a></li>
|
||||
<li><a href="#">조정신청 대리인 신청</a></li>
|
||||
<li><a href="#">조정신청 취하</a></li>
|
||||
<li><a href="#">조정 경정 신청</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><button type="button" class="menu_tit" title="소메뉴 열기">사례/통계</button>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">조정사건조회</a></li>
|
||||
<li><a href="#">조정사례조회</a></li>
|
||||
<li><a href="#">조정통계</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><button type="button" class="menu_tit" title="소메뉴 열기">정보마당</button>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">공지사항</a></li>
|
||||
<li><a href="#">조정제도 안내 게시판</a></li>
|
||||
<li><a href="#">관련법조항 게시판</a></li>
|
||||
<li><a href="#">묻고답하기</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li"><button type="button" class="menu_tit" title="소메뉴 열기">마이페이지</button>
|
||||
<ul class="depth02">
|
||||
<li><a href="#">개인정보관리</a></li>
|
||||
<li><a href="#">분쟁조정현황</a></li>
|
||||
<li><a href="#">대리인정보관리</a></li>
|
||||
<li><a href="#">분쟁조정문의</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="depth01_li">
|
||||
<button type="button" class="menu_tit" title="소메뉴 열기">이용안내</button>
|
||||
<ul class="depth02">
|
||||
<li><a href="https://www.copyright.or.kr/customer-center/user-guide/privacy-policy/index.do" target="_blank" title="새창열림">개인정보처리방침 <i class="link"></i></a></li>
|
||||
<li><a href="https://www.copyright.or.kr/customer-center/user-guide/email-rejection/index.do" target="_blank" title="새창열림">이메일무단수집거부 <i class="link"></i></a></li>
|
||||
<li><a href="https://www.copyright.or.kr/customer-center/user-guide/customer-service-charter/index.do" target="_blank" title="새창열림">고객서비스헌장 <i class="link"></i></a></li>
|
||||
<li><a href="https://www.copyright.or.kr/customer-center/user-guide/policy/index.do" target="_blank" title="새창열림">저작권정책 <i class="link"></i></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<button class="btn_close" title="모바일메뉴 닫기"></button>
|
||||
</div>
|
||||
<!-- //모바일메뉴 -->
|
||||
|
||||
<!-- 메인 콘텐츠 -->
|
||||
<main class="main" id="main">
|
||||
<!-- 메인 비주얼 -->
|
||||
<div class="main_visual">
|
||||
<div class="visual_wrap swiper-container">
|
||||
<ul class="visual_list swiper-wrapper">
|
||||
<li class="visual_img img01 swiper-slide"></li>
|
||||
<li class="visual_img img02 swiper-slide"></li>
|
||||
<li class="visual_img img03 swiper-slide"></li>
|
||||
</ul>
|
||||
<!-- <div class="visual_nav"></div> -->
|
||||
<div class="visual_util">
|
||||
<button class="visual_prev" title="비주얼 이미지 이전"></button>
|
||||
<button class="visual_next" title="비주얼 이미지 다음"></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="inner">
|
||||
<div class="text_area">
|
||||
<p>분쟁을 신속하고 공정하게 해결해주는</p>
|
||||
<span>저작권 전자조정시스템</span>
|
||||
</div>
|
||||
<!-- <div class="search_area">
|
||||
<input type="text"><button class="btn_search" title="검색"></button>
|
||||
<div class="tag_area">
|
||||
<a href="/">#저작권</a>
|
||||
<a href="/">#폰트사용범위</a>
|
||||
<a href="/">#저작권침해</a>
|
||||
<a href="/">#만료저작물</a>
|
||||
<a href="/">#음원저작권</a>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
<!-- //메인 비주얼 -->
|
||||
|
||||
<!-- 바로가기 -->
|
||||
|
||||
<div class="baro_cont experience_cont">
|
||||
<div class="inner">
|
||||
<div class="mask"></div>
|
||||
<a href="/" title="접수 페이지 바로가기"><i></i>
|
||||
<p>접수</p>
|
||||
<div class="tooltip_box">
|
||||
<div class="tooltip_type01">
|
||||
<div class="text_area">
|
||||
<p class="tooltip_tit01">
|
||||
조정사건을 신청하는 기능<br>
|
||||
사건 유형별, 사건정보를 등록하여 조정신청을 진행
|
||||
</p>
|
||||
<p class="tooltip_tit02">정보등록, 불러오기, 제출하기 기능 제공</p>
|
||||
</div>
|
||||
<button type="button" title="페이지 이동">전자조정 등록</button>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="/" title="기일지정 페이지 바로가기"><i></i>
|
||||
<p>기일지정</p>
|
||||
<div class="tooltip_box">
|
||||
<div class="tooltip_type01">
|
||||
<div class="text_area">
|
||||
<p class="tooltip_tit01">
|
||||
조정사건을 신청하는 기능<br>
|
||||
사건 유형별, 사건정보를 등록하여 조정신청을 진행
|
||||
</p>
|
||||
<p class="tooltip_tit02">정보등록, 불러오기, 제출하기 기능 제공</p>
|
||||
</div>
|
||||
<button type="button" title="페이지 이동">전자조정 등록</button>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="/" title="기일개최 페이지 바로가기"><i></i>
|
||||
<p>기일개최</p>
|
||||
<div class="tooltip_box">
|
||||
<div class="tooltip_type01">
|
||||
<div class="text_area">
|
||||
<p class="tooltip_tit01">
|
||||
조정사건을 신청하는 기능<br>
|
||||
사건 유형별, 사건정보를 등록하여 조정신청을 진행
|
||||
</p>
|
||||
<p class="tooltip_tit02">정보등록, 불러오기, 제출하기 기능 제공</p>
|
||||
</div>
|
||||
<button type="button" title="페이지 이동">전자조정 등록</button>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="/" title="조정중 페이지 바로가기"><i></i>
|
||||
<p>조정중</p>
|
||||
<div class="tooltip_box">
|
||||
<div class="tooltip_type01">
|
||||
<div class="text_area">
|
||||
<p class="tooltip_tit01">
|
||||
조정사건을 신청하는 기능<br>
|
||||
사건 유형별, 사건정보를 등록하여 조정신청을 진행
|
||||
</p>
|
||||
<p class="tooltip_tit02">정보등록, 불러오기, 제출하기 기능 제공</p>
|
||||
</div>
|
||||
<button type="button" title="페이지 이동">전자조정 등록</button>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="/" title="종료 페이지 바로가기"><i></i>
|
||||
<p>종료</p>
|
||||
<div class="tooltip_box">
|
||||
<div class="tooltip_type01">
|
||||
<div class="text_area">
|
||||
<p class="tooltip_tit01">
|
||||
조정사건을 신청하는 기능<br>
|
||||
사건 유형별, 사건정보를 등록하여 조정신청을 진행
|
||||
</p>
|
||||
<p class="tooltip_tit02">정보등록, 불러오기, 제출하기 기능 제공</p>
|
||||
</div>
|
||||
<button type="button" title="페이지 이동">전자조정 등록</button>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- //바로가기 -->
|
||||
<div class="btm_cont">
|
||||
<div class="inner">
|
||||
<!-- 조정신청 안내 -->
|
||||
<div class="area_info area_cont">
|
||||
<div class="area_top">
|
||||
<p class="tit">조정신청 안내</p>
|
||||
</div>
|
||||
<div class="cont">
|
||||
<div class="bnn_cont">
|
||||
<a href="/">
|
||||
<i></i>
|
||||
<span>전자조정 신청</span>
|
||||
<p>온라인상으로 구비서류 제출 및 수수료 결제</p>
|
||||
</a>
|
||||
<a href="/">
|
||||
<i></i>
|
||||
<span>오프라인 신청</span>
|
||||
<p>한국저작권위원회로 우편 송달 또는 방문</p>
|
||||
</a>
|
||||
</div>
|
||||
<div class="area_btm">
|
||||
<div class="tit">
|
||||
<i></i>
|
||||
<p>상담전화</p>
|
||||
</div>
|
||||
<p class="info">
|
||||
<span>02-2669-0044</span>
|
||||
월~금(평일) 09:00~18:00
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //조정신청 안내 -->
|
||||
|
||||
<!-- 조정일정 -->
|
||||
<div class="area_cont area_list">
|
||||
<div class="area_top">
|
||||
<p class="tit">조정사례</p>
|
||||
<div class="cont_util">
|
||||
<button class="btn_plus" title="조정사례 페이지 이동"><i></i></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="cont list_cont">
|
||||
<ul class="list">
|
||||
<li>
|
||||
<a href="#">
|
||||
<p class="list_top">
|
||||
<span class="list_tit">조정 사례 공개 안내</span>
|
||||
<span class="list_date">2017-05-08</span>
|
||||
</p>
|
||||
<p class="list_info">안녕하세요 조정 사례는 실제 발생한 조정 사례를
|
||||
기준으로 작성되고 있습니다.다만, 조정제도는...</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<p class="list_top">
|
||||
<span class="list_tit">· 조정 사례 공개 안내</span>
|
||||
<span class="list_date">2017-05-08</span>
|
||||
</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<p class="list_top">
|
||||
<span class="list_tit">· 조정 사례 공개 안내</span>
|
||||
<span class="list_date">2017-05-08</span>
|
||||
</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<p class="list_top">
|
||||
<span class="list_tit">· 조정 사례 공개 안내</span>
|
||||
<span class="list_date">2017-05-08</span>
|
||||
</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<p class="list_top">
|
||||
<span class="list_tit">· 조정 사례 공개 안내</span>
|
||||
<span class="list_date">2017-05-08</span>
|
||||
</p>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //조정일정 -->
|
||||
|
||||
|
||||
<!-- 팝업존 -->
|
||||
<div class="area_pz area_cont">
|
||||
<div class="area_top">
|
||||
<p class="tit">팝업존</p>
|
||||
<div class="cont_util">
|
||||
<button class="btn_prev" title="이전팝업 이미지 이동"></button>
|
||||
<button class="btn_next" title="다음팝업 이미지 이동"></button>
|
||||
<button class="btn_ctl btn_pause" onclick="pz_ctl(this);" title="팝업존 일시정지"></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="cont">
|
||||
<div class="swiper-container pz_wrap">
|
||||
<ul class="pz_list swiper-wrapper">
|
||||
<li class="pz_img swiper-slide">
|
||||
<a href="#"><img src="/kccadrPb/usr/image/main/1.jpg" alt=""></a>
|
||||
</li>
|
||||
<li class="pz_img swiper-slide">
|
||||
<a href="#"><img src="/kccadrPb/usr/image/main/2.png" alt=""></a>
|
||||
</li>
|
||||
<li class="pz_img swiper-slide">
|
||||
<a href="#"><img src="/kccadrPb/usr/image/main/1.jpg" alt=""></a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //팝업존 -->
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!-- 메인 콘텐츠 -->
|
||||
|
||||
<!-- footer -->
|
||||
<footer>
|
||||
<div class="inner">
|
||||
<div class="area_top">
|
||||
<ul class="site">
|
||||
<li><a href="/">개인정보처리방침</a></li>
|
||||
<li><a href="/">이메일무단수집거부</a></li>
|
||||
<li><a href="/">고객서비스헌장</a></li>
|
||||
<li><a href="/">저작권정책</a></li>
|
||||
</ul>
|
||||
<div class="site_go">
|
||||
<label for="site_select">관련사이트 선택</label>
|
||||
<select name="" id="site_select">
|
||||
<option value="">관련사이트 바로가기</option>
|
||||
</select>
|
||||
<button class="btn_go" title="사이트 이동">GO</button>
|
||||
</div>
|
||||
</div>
|
||||
<h1 class="logo"><a href="/kccadrPb/usr/index.html"><img src="/kccadrPb/usr/image/common/footer_logo.png"
|
||||
alt="저작권 전자조정시스템 Copyright Electronic Coordination System"></a></h1>
|
||||
<address>
|
||||
<p>진주 [52852] 경상남도 진주시 충의로 19, 1/2/5층 ☎ 대표번호 055.792.0000</p>
|
||||
<p>서울 [04323] 서울특별시 용산구 후암로 107, 5/16층 ☎ 대표번호 02.2669.0010</p>
|
||||
</address>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- //footer -->
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@ -21,6 +21,22 @@ $(document).ready(function () {
|
||||
$(".sch.swiper-slide.swiper-slide-active a").attr("tabIndex", "0");
|
||||
});
|
||||
/* //조정일정 스케줄 웹접근성 */
|
||||
|
||||
$(".baro_cont a").mouseover(function(){
|
||||
if($(this).siblings().is("on") == false){
|
||||
$(this).addClass("on");
|
||||
$(".mask").show();
|
||||
$(this).children(".tooltip_box").show();
|
||||
$(this).siblings().removeClass("on");
|
||||
$(this).next().siblings(".tooltip_box").hide()
|
||||
}else{}
|
||||
});
|
||||
|
||||
$(".tooltip_box, .baro_cont a").mouseleave(function(){
|
||||
$(".tooltip_box").hide();
|
||||
$(".mask").hide();
|
||||
$(".baro_cont a").removeClass("on");
|
||||
})
|
||||
});
|
||||
|
||||
function main_visual() {
|
||||
|
||||
@ -399,6 +399,7 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p class="cf_text02">제출하신 신청서는 조정조사관이 서류미비시 도움을 드리겠습니다.</p>
|
||||
</div>
|
||||
<!-- //신청인 정보 -->
|
||||
|
||||
|
||||