Merge branch 'advc' of
http://yongjoon.cho@vcs.iten.co.kr:9999/hylee/offedu into advc Conflicts: src/main/webapp/WEB-INF/jsp/web/ve/aplct/fndtnEnhanceTrn/eduAplctList.jsp
This commit is contained in:
commit
42ac0ed362
@ -514,8 +514,8 @@ public class FndtnEnhanceTrnController {
|
|||||||
SsoLoginVO ssoLoginVO = checkLoginUtil.getSSOLoginVO(request); //SSO 로그인 정보 가져오기
|
SsoLoginVO ssoLoginVO = checkLoginUtil.getSSOLoginVO(request); //SSO 로그인 정보 가져오기
|
||||||
|
|
||||||
|
|
||||||
vEPrcsDetailVO.setFrstRegisterId(loginVO.getUniqId()); //esntl_id
|
// vEPrcsDetailVO.setFrstRegisterId(loginVO.getUniqId()); //esntl_id
|
||||||
vEPrcsDetailVO.setLctrDivCd("50"); //강의구분코드 VE0011 10-청소년강의, 20-성인강의, 30-체험, 50-기반강화, 60-조건부
|
// vEPrcsDetailVO.setLctrDivCd("50"); //강의구분코드 VE0011 10-청소년강의, 20-성인강의, 30-체험, 50-기반강화, 60-조건부
|
||||||
|
|
||||||
|
|
||||||
VEEduAplctVO vEEduAplctVO = new VEEduAplctVO();
|
VEEduAplctVO vEEduAplctVO = new VEEduAplctVO();
|
||||||
@ -539,6 +539,10 @@ public class FndtnEnhanceTrnController {
|
|||||||
vEEduAplctVO.setInsttNm(vEPrcsDetailVO.getInsttNm());
|
vEEduAplctVO.setInsttNm(vEPrcsDetailVO.getInsttNm());
|
||||||
vEEduAplctVO.setdBirth(vEPrcsDetailVO.getdBirth());
|
vEEduAplctVO.setdBirth(vEPrcsDetailVO.getdBirth());
|
||||||
|
|
||||||
|
vEEduAplctVO.setFld(vEPrcsDetailVO.getFld());
|
||||||
|
vEEduAplctVO.setLctrYn(vEPrcsDetailVO.getLctrYn());
|
||||||
|
vEEduAplctVO.setPrvsQs(vEPrcsDetailVO.getPrvsQs());
|
||||||
|
|
||||||
|
|
||||||
fndtnEnhanceTrnService.insertVeEduAplct(vEEduAplctVO);
|
fndtnEnhanceTrnService.insertVeEduAplct(vEEduAplctVO);
|
||||||
|
|
||||||
@ -690,7 +694,7 @@ public class FndtnEnhanceTrnController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@RequestMapping("/web/ve/aplct/fndtnEnhanceTrn/eduRegPopup.do")
|
@RequestMapping("/web/ve/aplct/fndtnEnhanceTrn/eduAplctPop.do")
|
||||||
public String eduRegPopup(
|
public String eduRegPopup(
|
||||||
@ModelAttribute("vEPrcsDetailVO") VEPrcsDetailVO vEPrcsDetailVO
|
@ModelAttribute("vEPrcsDetailVO") VEPrcsDetailVO vEPrcsDetailVO
|
||||||
, ModelMap model
|
, ModelMap model
|
||||||
|
|||||||
@ -409,6 +409,9 @@ public class VEEduAplctVO extends ComDefaultVO implements Serializable {
|
|||||||
|
|
||||||
private Boolean qestRsltExists; //설문여부
|
private Boolean qestRsltExists; //설문여부
|
||||||
|
|
||||||
|
private String fld; // 분야
|
||||||
|
private String lctrYn; // 저작권 교육 수강 여부
|
||||||
|
private String prvsQs; // 교육관련 사전질의
|
||||||
|
|
||||||
|
|
||||||
public String getSpecialWorkAllow() {
|
public String getSpecialWorkAllow() {
|
||||||
@ -1786,6 +1789,24 @@ public class VEEduAplctVO extends ComDefaultVO implements Serializable {
|
|||||||
public void setQestRsltExists(Boolean qestRsltExists) {
|
public void setQestRsltExists(Boolean qestRsltExists) {
|
||||||
this.qestRsltExists = qestRsltExists;
|
this.qestRsltExists = qestRsltExists;
|
||||||
}
|
}
|
||||||
|
public String getFld() {
|
||||||
|
return fld;
|
||||||
|
}
|
||||||
|
public void setFld(String fld) {
|
||||||
|
this.fld = fld;
|
||||||
|
}
|
||||||
|
public String getLctrYn() {
|
||||||
|
return lctrYn;
|
||||||
|
}
|
||||||
|
public void setLctrYn(String lctrYn) {
|
||||||
|
this.lctrYn = lctrYn;
|
||||||
|
}
|
||||||
|
public String getPrvsQs() {
|
||||||
|
return prvsQs;
|
||||||
|
}
|
||||||
|
public void setPrvsQs(String prvsQs) {
|
||||||
|
this.prvsQs = prvsQs;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -141,7 +141,6 @@ public class VEEduAplctServiceImpl implements VEEduAplctService {
|
|||||||
vEEduAplctVO.setMngNmbrOrd(vo.getMngNmbrOrd());
|
vEEduAplctVO.setMngNmbrOrd(vo.getMngNmbrOrd());
|
||||||
}
|
}
|
||||||
|
|
||||||
if(true) return 0;
|
|
||||||
return vEEduAplctDAO.statusUpdate(vEEduAplctVO);
|
return vEEduAplctDAO.statusUpdate(vEEduAplctVO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -167,7 +167,11 @@ public class VEPrcsDetailVO extends ComDefaultVO implements Serializable {
|
|||||||
|
|
||||||
private String lctrPlanRsltAtchFileId; //강의계획서 첨부파일 아이디
|
private String lctrPlanRsltAtchFileId; //강의계획서 첨부파일 아이디
|
||||||
|
|
||||||
|
private String qustnrTmplatId;
|
||||||
|
|
||||||
|
private String fld; // 분야
|
||||||
|
private String lctrYn; // 저작권 교육 수강 여부
|
||||||
|
private String prvsQs; // 교육관련 사전질의
|
||||||
|
|
||||||
|
|
||||||
public String getSearchDiv() {
|
public String getSearchDiv() {
|
||||||
@ -810,6 +814,30 @@ public class VEPrcsDetailVO extends ComDefaultVO implements Serializable {
|
|||||||
public void setInstrNm(String instrNm) {
|
public void setInstrNm(String instrNm) {
|
||||||
this.instrNm = instrNm;
|
this.instrNm = instrNm;
|
||||||
}
|
}
|
||||||
|
public String getQustnrTmplatId() {
|
||||||
|
return qustnrTmplatId;
|
||||||
|
}
|
||||||
|
public void setQustnrTmplatId(String qustnrTmplatId) {
|
||||||
|
this.qustnrTmplatId = qustnrTmplatId;
|
||||||
|
}
|
||||||
|
public String getFld() {
|
||||||
|
return fld;
|
||||||
|
}
|
||||||
|
public void setFld(String fld) {
|
||||||
|
this.fld = fld;
|
||||||
|
}
|
||||||
|
public String getLctrYn() {
|
||||||
|
return lctrYn;
|
||||||
|
}
|
||||||
|
public void setLctrYn(String lctrYn) {
|
||||||
|
this.lctrYn = lctrYn;
|
||||||
|
}
|
||||||
|
public String getPrvsQs() {
|
||||||
|
return prvsQs;
|
||||||
|
}
|
||||||
|
public void setPrvsQs(String prvsQs) {
|
||||||
|
this.prvsQs = prvsQs;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -317,7 +317,10 @@
|
|||||||
USE_YN,
|
USE_YN,
|
||||||
CHRG_NM,
|
CHRG_NM,
|
||||||
INSTT_NM,
|
INSTT_NM,
|
||||||
D_BIRTH
|
D_BIRTH,
|
||||||
|
FLD,
|
||||||
|
LCTR_YN,
|
||||||
|
PRVS_QS
|
||||||
)
|
)
|
||||||
VALUES(
|
VALUES(
|
||||||
#eduAplctOrd#,
|
#eduAplctOrd#,
|
||||||
@ -336,7 +339,10 @@
|
|||||||
'Y',
|
'Y',
|
||||||
#chrgNm#,
|
#chrgNm#,
|
||||||
#insttNm#,
|
#insttNm#,
|
||||||
#dBirth#
|
#dBirth#,
|
||||||
|
#fld#,
|
||||||
|
#lctrYn#,
|
||||||
|
#prvsQs#
|
||||||
)
|
)
|
||||||
WHEN MATCHED THEN
|
WHEN MATCHED THEN
|
||||||
UPDATE
|
UPDATE
|
||||||
@ -371,6 +377,15 @@
|
|||||||
<isNotEmpty property="dBirth">
|
<isNotEmpty property="dBirth">
|
||||||
,D_BIRTH = #dBirth#
|
,D_BIRTH = #dBirth#
|
||||||
</isNotEmpty>
|
</isNotEmpty>
|
||||||
|
<isNotEmpty property="fld">
|
||||||
|
,FLD = #fld#
|
||||||
|
</isNotEmpty>
|
||||||
|
<isNotEmpty property="lctrYn">
|
||||||
|
,LCTR_YN = #lctrYn#
|
||||||
|
</isNotEmpty>
|
||||||
|
<isNotEmpty property="prvsQs">
|
||||||
|
,PRVS_QS = #prvsQs#
|
||||||
|
</isNotEmpty>
|
||||||
|
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
|||||||
@ -189,7 +189,18 @@
|
|||||||
vsit.trgt_nm AS trgtNm,
|
vsit.trgt_nm AS trgtNm,
|
||||||
vsit.sspn_idtmt_trgt_ord AS sspnIdtmtTrgtOrd,
|
vsit.sspn_idtmt_trgt_ord AS sspnIdtmtTrgtOrd,
|
||||||
vsit.clphone AS vs_clphone,
|
vsit.clphone AS vs_clphone,
|
||||||
vsit.d_birth AS dBirth
|
vsit.d_birth AS dBirth ,
|
||||||
|
CASE
|
||||||
|
WHEN EXISTS (/* 설문조사 */
|
||||||
|
SELECT
|
||||||
|
1
|
||||||
|
FROM
|
||||||
|
LETTNQESTNRRSLTDETAIL lersltD
|
||||||
|
WHERE
|
||||||
|
lersltD.respond_id = a.USER_ID
|
||||||
|
AND a.edu_aplct_ord = lersltD.edu_aplct_ord ) THEN 1
|
||||||
|
ELSE 0
|
||||||
|
END AS qestRsltExists
|
||||||
FROM
|
FROM
|
||||||
<include refid="VEEduMIXDAO.table_name"/> a
|
<include refid="VEEduMIXDAO.table_name"/> a
|
||||||
JOIN ve_prcs_aplct_prd vpap ON
|
JOIN ve_prcs_aplct_prd vpap ON
|
||||||
@ -229,6 +240,7 @@
|
|||||||
</isNotEmpty>
|
</isNotEmpty>
|
||||||
|
|
||||||
AND a.use_yn = 'Y'
|
AND a.use_yn = 'Y'
|
||||||
|
AND a.aprvl_cd != '40' /* 취소된 내역 안 보여줌 */
|
||||||
|
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|||||||
@ -216,10 +216,26 @@
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//설문조사 결과
|
||||||
|
function fncInstrCostInfo(eduId, userId) { //메뉴생성 화면 호출
|
||||||
|
var form = document.popupForm;
|
||||||
|
|
||||||
|
form.eduAplctOrd.value = eduId;
|
||||||
|
form.respondId.value = userId;
|
||||||
|
// form.prcsAplctPrdOrd.value = prcsAplctPrdOrd;
|
||||||
|
|
||||||
|
form.action = "<c:url value='/kccadr/oprtn/fndthEnhanceTrn/popup/lctrEvalPopup.do'/>";
|
||||||
|
openPopupAndSubmitForm('popupForm', 'popupForm', 900, 1200);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<form id="popupForm" name="popupForm" method="post">
|
||||||
|
<input type="hidden" name="prcsAplctPrdOrd" id="prcsAplctPrdOrd" value="<c:out value='${vEPrcsDetailVO.prcsAplctPrdOrd}' />"/>
|
||||||
|
<input type="hidden" name="eduAplctOrd" id="eduAplctOrd"/>
|
||||||
|
<input type="hidden" name="respondId" id="respondId"/>
|
||||||
|
</form>
|
||||||
<form id="instrForm" name="instrForm" method="post">
|
<form id="instrForm" name="instrForm" method="post">
|
||||||
<input type="hidden" name="prcsAplctPrdOrd" id="prcsAplctPrdOrd" value="<c:out value='${vEPrcsDetailVO.prcsAplctPrdOrd}' />"/>
|
<input type="hidden" name="prcsAplctPrdOrd" id="prcsAplctPrdOrd" value="<c:out value='${vEPrcsDetailVO.prcsAplctPrdOrd}' />"/>
|
||||||
<input type="hidden" name="userId" id="userId"/>
|
<input type="hidden" name="userId" id="userId"/>
|
||||||
@ -442,6 +458,8 @@
|
|||||||
<col style="width: 210px;">
|
<col style="width: 210px;">
|
||||||
<col style="width: 210px;">
|
<col style="width: 210px;">
|
||||||
<col style="width: 210px;">
|
<col style="width: 210px;">
|
||||||
|
<col style="width: 180px;">
|
||||||
|
<col style="width: 210px;">
|
||||||
</colgroup>
|
</colgroup>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -451,6 +469,8 @@
|
|||||||
<th>연락처</th>
|
<th>연락처</th>
|
||||||
<th>교육이수여부</th>
|
<th>교육이수여부</th>
|
||||||
<th>교육이수상태변경</th>
|
<th>교육이수상태변경</th>
|
||||||
|
<th>설문조사</th>
|
||||||
|
<th>이수증</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -478,6 +498,27 @@
|
|||||||
<button type="button" class="btn_type04" onclick="fn_statusChg('20', '<c:out value="${list.eduAplctOrd }" />', '<c:out value="${list.sspnIdtmtTrgtOrd }"/>')">이수</button>
|
<button type="button" class="btn_type04" onclick="fn_statusChg('20', '<c:out value="${list.eduAplctOrd }" />', '<c:out value="${list.sspnIdtmtTrgtOrd }"/>')">이수</button>
|
||||||
<button type="button" class="btn_type05" onclick="fn_statusChg('10', '<c:out value="${list.eduAplctOrd }" />', '<c:out value="${list.sspnIdtmtTrgtOrd }"/>')">미이수</button>
|
<button type="button" class="btn_type05" onclick="fn_statusChg('10', '<c:out value="${list.eduAplctOrd }" />', '<c:out value="${list.sspnIdtmtTrgtOrd }"/>')">미이수</button>
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
<c:choose>
|
||||||
|
<c:when test="${list.qestRsltExists }">
|
||||||
|
<%-- <button type="button" class="btn_type04" onclick="fncInstrCostInfo('<c:out value="${list.qestnrId }"/>');">설문결과</button> --%>
|
||||||
|
<button type="button" class="btn_type04" onclick="fncInstrCostInfo('${list.eduAplctOrd }', '${list.userId }');">설문결과</button>
|
||||||
|
</c:when>
|
||||||
|
<c:otherwise>
|
||||||
|
미입력
|
||||||
|
</c:otherwise>
|
||||||
|
</c:choose>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<c:choose>
|
||||||
|
<c:when test="${list.qestRsltExists }">
|
||||||
|
<button type="button" title="이수증" class="btn_type04" onclick="fncCmpltCrtfc('<c:out value="${info.prcsAplctPrdOrd}"/>', '<c:out value="${list.eduAplctOrd}"/>');">이수증</button>
|
||||||
|
</c:when>
|
||||||
|
<c:otherwise>
|
||||||
|
-
|
||||||
|
</c:otherwise>
|
||||||
|
</c:choose>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</c:when>
|
</c:when>
|
||||||
|
|||||||
@ -176,6 +176,12 @@
|
|||||||
<input type="hidden" id="prcsSortNo" name="prcsSortNo" value="" />
|
<input type="hidden" id="prcsSortNo" name="prcsSortNo" value="" />
|
||||||
|
|
||||||
<div class="cont_wrap">
|
<div class="cont_wrap">
|
||||||
|
<!--tap 추가-->
|
||||||
|
<ul class="tab_wrap">
|
||||||
|
<li class="tab"><button type="button" onclick="location.href='<c:url value="/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsAplctPrdMngList.do" />'">과정신청기간관리목록</button></li>
|
||||||
|
<li class="tab"><button type="button" onclick="location.href='<c:url value="/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsMngList.do" />'">과정관리목록</button></li>
|
||||||
|
<li class="tab active"><button type="button" onclick="location.href='<c:url value="/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsAplctCfnMngList.do" />'">교육확정관리목록</button></li>
|
||||||
|
</ul>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
|
|
||||||
<!-- cont_tit -->
|
<!-- cont_tit -->
|
||||||
@ -193,7 +199,7 @@
|
|||||||
|
|
||||||
<div class="cont">
|
<div class="cont">
|
||||||
<div class="tb_tit01">
|
<div class="tb_tit01">
|
||||||
<p>교육 확정 관리</p>
|
<!-- <p>교육 확정 관리</p> -->
|
||||||
</div>
|
</div>
|
||||||
<!-- list_top -->
|
<!-- list_top -->
|
||||||
<div class="list_top search-only">
|
<div class="list_top search-only">
|
||||||
|
|||||||
@ -187,6 +187,13 @@
|
|||||||
<input type="hidden" id="prcsSortNo" name="prcsSortNo" value="" />
|
<input type="hidden" id="prcsSortNo" name="prcsSortNo" value="" />
|
||||||
|
|
||||||
<div class="cont_wrap">
|
<div class="cont_wrap">
|
||||||
|
<!--tap 추가-->
|
||||||
|
<ul class="tab_wrap">
|
||||||
|
<li class="tab active"><button type="button" >과정신청기간관리목록</button></li>
|
||||||
|
<%-- <li class="tab"><button type="button" onclick="location.href='<c:url value="/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsAplctPrdMngList.do" />'">과정신청기간관리목록</button></li> --%>
|
||||||
|
<li class="tab"><button type="button" onclick="location.href='<c:url value="/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsMngList.do" />'">과정관리목록</button></li>
|
||||||
|
<li class="tab"><button type="button" onclick="location.href='<c:url value="/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsAplctCfnMngList.do" />'">교육확정관리목록</button></li>
|
||||||
|
</ul>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
|
|
||||||
<!-- cont_tit -->
|
<!-- cont_tit -->
|
||||||
@ -204,7 +211,7 @@
|
|||||||
|
|
||||||
<div class="cont">
|
<div class="cont">
|
||||||
<div class="tb_tit01">
|
<div class="tb_tit01">
|
||||||
<p>교육 과정 관리</p>
|
<!-- <p>교육 과정 관리</p> -->
|
||||||
</div>
|
</div>
|
||||||
<!-- list_top -->
|
<!-- list_top -->
|
||||||
<div class="list_top search-only">
|
<div class="list_top search-only">
|
||||||
|
|||||||
@ -152,9 +152,10 @@
|
|||||||
<div class="cont_wrap">
|
<div class="cont_wrap">
|
||||||
<!--tap 추가-->
|
<!--tap 추가-->
|
||||||
<ul class="tab_wrap">
|
<ul class="tab_wrap">
|
||||||
<li class="tab active"><button type="button" onclick="TabWrap(this,'1');">과정신청기간관리목록</button></li>
|
<!-- <li class="tab active"><button type="button" >과정신청기간관리목록</button></li> -->
|
||||||
<li class="tab"><button type="button" onclick="TabWrap(this,'2');">과정관리목록</button></li>
|
<li class="tab"><button type="button" onclick="location.href='<c:url value="/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsAplctPrdMngList.do" />'">과정신청기간관리목록</button></li>
|
||||||
<li class="tab"><button type="button" onclick="TabWrap(this,'3');">교육확정관리목록</button></li>
|
<li class="tab active"><button type="button" onclick="location.href='<c:url value="/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsMngList.do" />'">과정관리목록</button></li>
|
||||||
|
<li class="tab"><button type="button" onclick="location.href='<c:url value="/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsAplctCfnMngList.do" />'">교육확정관리목록</button></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
|
|
||||||
@ -173,7 +174,7 @@
|
|||||||
|
|
||||||
<div class="cont">
|
<div class="cont">
|
||||||
<div class="tb_tit01">
|
<div class="tb_tit01">
|
||||||
<p>교육 과정 관리</p>
|
<!-- <p>교육 과정 관리</p> -->
|
||||||
</div>
|
</div>
|
||||||
<!-- list_top -->
|
<!-- list_top -->
|
||||||
<div class="list_top search-only">
|
<div class="list_top search-only">
|
||||||
|
|||||||
@ -205,7 +205,7 @@
|
|||||||
<ul class="cont_nav">
|
<ul class="cont_nav">
|
||||||
<li class="home"><a href="/"><i></i></a></li>
|
<li class="home"><a href="/"><i></i></a></li>
|
||||||
<li>
|
<li>
|
||||||
<p>기반강화연수관리</p>
|
<p>실무자역량강화(기반강화연수관리)</p>
|
||||||
</li>
|
</li>
|
||||||
<li><span class="cur_nav">강사별관리목록</span></li>
|
<li><span class="cur_nav">강사별관리목록</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@ -192,6 +192,12 @@
|
|||||||
<input type="hidden" id="prcsSortNo" name="prcsSortNo" value="" />
|
<input type="hidden" id="prcsSortNo" name="prcsSortNo" value="" />
|
||||||
|
|
||||||
<div class="cont_wrap">
|
<div class="cont_wrap">
|
||||||
|
<!--tap 추가-->
|
||||||
|
<ul class="tab_wrap">
|
||||||
|
<li class="tab"><button type="button" onclick="location.href='<c:url value="/kccadr/oprtn/cndtnSspnIdtmt/trgtMngList.do" />'">대상자관리</button></li>
|
||||||
|
<!-- <li class="tab"><button type="button" onclick="TabWrap(this,'2');">수료자관리</button></li> -->
|
||||||
|
<li class="tab active"><button type="button" >수료자관리</button></li>
|
||||||
|
</ul>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
|
|
||||||
<!-- cont_tit -->
|
<!-- cont_tit -->
|
||||||
|
|||||||
@ -241,7 +241,8 @@
|
|||||||
<!--tap 추가-->
|
<!--tap 추가-->
|
||||||
<ul class="tab_wrap">
|
<ul class="tab_wrap">
|
||||||
<li class="tab active"><button type="button" onclick="TabWrap(this,'1');">대상자관리</button></li>
|
<li class="tab active"><button type="button" onclick="TabWrap(this,'1');">대상자관리</button></li>
|
||||||
<li class="tab"><button type="button" onclick="TabWrap(this,'2');">수료자관리</button></li>
|
<!-- <li class="tab"><button type="button" onclick="TabWrap(this,'2');">수료자관리</button></li> -->
|
||||||
|
<li class="tab"><button type="button" onclick="location.href='<c:url value="/kccadr/oprtn/cndtnSspnIdtmt/trgtCmpltList.do" />'">수료자관리</button></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
|
|
||||||
|
|||||||
@ -255,7 +255,7 @@
|
|||||||
<ul class="cont_nav">
|
<ul class="cont_nav">
|
||||||
<li class="home"><a href="/"><i></i></a></li>
|
<li class="home"><a href="/"><i></i></a></li>
|
||||||
<li>
|
<li>
|
||||||
<p>기반강화연수관리</p>
|
<p>실무자역량강화(기반강화연수관리)</p>
|
||||||
</li>
|
</li>
|
||||||
<li><span class="cur_nav">교육확정관리상세</span></li>
|
<li><span class="cur_nav">교육확정관리상세</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@ -183,7 +183,7 @@
|
|||||||
<ul class="cont_nav">
|
<ul class="cont_nav">
|
||||||
<li class="home"><a href="/"><i></i></a></li>
|
<li class="home"><a href="/"><i></i></a></li>
|
||||||
<li>
|
<li>
|
||||||
<p>기반강화연수관리</p>
|
<p>실무자역량강화(기반강화연수관리)</p>
|
||||||
</li>
|
</li>
|
||||||
<li><span class="cur_nav">과정신청기간관리목록</span></li>
|
<li><span class="cur_nav">과정신청기간관리목록</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@ -191,7 +191,7 @@
|
|||||||
<ul class="cont_nav">
|
<ul class="cont_nav">
|
||||||
<li class="home"><a href="/"><i></i></a></li>
|
<li class="home"><a href="/"><i></i></a></li>
|
||||||
<li>
|
<li>
|
||||||
<p>기반강화연수관리</p>
|
<p>실무자역량강화(기반강화연수관리)</p>
|
||||||
</li>
|
</li>
|
||||||
<li><span class="cur_nav">기반강화연수 과정 신청기간 등록</span></li>
|
<li><span class="cur_nav">기반강화연수 과정 신청기간 등록</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@ -63,7 +63,7 @@
|
|||||||
<li>
|
<li>
|
||||||
<p>실무자역량강화(기반강화연수관리)</p>
|
<p>실무자역량강화(기반강화연수관리)</p>
|
||||||
</li>
|
</li>
|
||||||
<li><span class="cur_nav">기반강화연수관리</span></li>
|
<li><span class="cur_nav">과정관리상세</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<!-- //cont_tit -->
|
<!-- //cont_tit -->
|
||||||
|
|||||||
@ -155,7 +155,7 @@
|
|||||||
<li>
|
<li>
|
||||||
<p>실무자역량강화(기반강화연수관리)</p>
|
<p>실무자역량강화(기반강화연수관리)</p>
|
||||||
</li>
|
</li>
|
||||||
<li><span class="cur_nav">기반강화연수관리</span></li>
|
<li><span class="cur_nav">과정관리수정</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<!-- //cont_tit -->
|
<!-- //cont_tit -->
|
||||||
|
|||||||
@ -36,7 +36,7 @@
|
|||||||
type:"POST"
|
type:"POST"
|
||||||
,url:"${pageContext.request.contextPath}/web/ve/aplct/fndtnEnhanceTrn/selectQustnrCommonAjax.do"
|
,url:"${pageContext.request.contextPath}/web/ve/aplct/fndtnEnhanceTrn/selectQustnrCommonAjax.do"
|
||||||
,data: {
|
,data: {
|
||||||
"lctrDivCd" : "50" // 기반강화 -> 기소유예(60)도 같이써야함
|
"lctrDivCd" : "60" // 기반강화 -> 기소유예(60)도 같이써야함
|
||||||
// ,"eduChasiOrd" : chId
|
// ,"eduChasiOrd" : chId
|
||||||
}
|
}
|
||||||
,dataType:'json'
|
,dataType:'json'
|
||||||
@ -168,7 +168,7 @@
|
|||||||
if(returnData.result == 'success'){
|
if(returnData.result == 'success'){
|
||||||
|
|
||||||
alert("설문결과가 수정 되었습니다.");
|
alert("설문결과가 수정 되었습니다.");
|
||||||
self.close();
|
location.reload();
|
||||||
}else if(returnData.result == 'fail'){
|
}else if(returnData.result == 'fail'){
|
||||||
alert(returnData.msg);
|
alert(returnData.msg);
|
||||||
location.href="${pageContext.request.contextPath}/web/user/login/ssoLogin.do?test=test";
|
location.href="${pageContext.request.contextPath}/web/user/login/ssoLogin.do?test=test";
|
||||||
@ -200,7 +200,7 @@
|
|||||||
|
|
||||||
alert("설문결과가 삭제 되었습니다.");
|
alert("설문결과가 삭제 되었습니다.");
|
||||||
window.opener.location.reload();
|
window.opener.location.reload();
|
||||||
self.close();
|
fncPopClose();
|
||||||
}else if(returnData.result == 'fail'){
|
}else if(returnData.result == 'fail'){
|
||||||
alert(returnData.msg);
|
alert(returnData.msg);
|
||||||
// location.href="${pageContext.request.contextPath}/web/user/login/ssoLogin.do?test=test";
|
// location.href="${pageContext.request.contextPath}/web/user/login/ssoLogin.do?test=test";
|
||||||
@ -213,12 +213,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function fncPopClose(){
|
||||||
|
self.close();
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<form:form id="createForm" name="createForm" method="post" commandName="vEInstrFeeAcmdtVO" onsubmit="return false;">
|
<form:form id="createForm" name="createForm" method="post" commandName="vEInstrFeeAcmdtVO" onsubmit="return false;">
|
||||||
<input type="hidden" name="qustnrTmplatId" id="qustnrTmplatId" value="QTMPLA_0000000000001">
|
<input type="hidden" name="qustnrTmplatId" id="qustnrTmplatId" value="<c:out value="${vEPrcsDetailVO.qustnrTmplatId}" />">
|
||||||
<input type="hidden" name="eduAplctOrd" id="eduAplctOrd" value="<c:out value="${vEPrcsDetailVO.eduAplctOrd}" />">
|
<input type="hidden" name="eduAplctOrd" id="eduAplctOrd" value="<c:out value="${vEPrcsDetailVO.eduAplctOrd}" />">
|
||||||
<input type="hidden" name="respondId" id="respondId" value="<c:out value="${vEPrcsDetailVO.respondId}" />">
|
<input type="hidden" name="respondId" id="respondId" value="<c:out value="${vEPrcsDetailVO.respondId}" />">
|
||||||
<div class="area_popup">
|
<div class="area_popup">
|
||||||
|
|||||||
@ -38,6 +38,7 @@
|
|||||||
var regStatus = true;
|
var regStatus = true;
|
||||||
|
|
||||||
// 텍스트가 비어있는지 확인
|
// 텍스트가 비어있는지 확인
|
||||||
|
console.log('$ddlnCdStts.text(): ',$ddlnCdStts.text());
|
||||||
if ($ddlnCdStts.text().trim() === "") {
|
if ($ddlnCdStts.text().trim() === "") {
|
||||||
var dateText = $ddlnCdStts.closest('table').find("td:eq(2)").text().trim();
|
var dateText = $ddlnCdStts.closest('table').find("td:eq(2)").text().trim();
|
||||||
|
|
||||||
@ -61,8 +62,19 @@
|
|||||||
|
|
||||||
// 상태
|
// 상태
|
||||||
$ddlnCdStts.text(textVal);
|
$ddlnCdStts.text(textVal);
|
||||||
|
|
||||||
// 버튼
|
// 버튼
|
||||||
$('#regBtn').text(textVal);
|
// 접수중일땐 버튼에 신청으로 노출
|
||||||
|
if(textVal != '접수중'){
|
||||||
|
$('#regBtn').text(textVal);
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
$('#regBtn').text('신청');
|
||||||
|
}
|
||||||
|
}else if($ddlnCdStts.text().trim() === "찜하기"){
|
||||||
|
|
||||||
|
$('#regBtn').text('신청');
|
||||||
|
regStatus = false;
|
||||||
}
|
}
|
||||||
$('#regBtn').prop('disabled', regStatus); // 버튼 비활성화
|
$('#regBtn').prop('disabled', regStatus); // 버튼 비활성화
|
||||||
}
|
}
|
||||||
@ -149,9 +161,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
commonPopLayeropen(
|
commonPopLayeropen(
|
||||||
"${pageContext.request.contextPath}/web/ve/aplct/fndtnEnhanceTrn/eduRegPopup.do"
|
"${pageContext.request.contextPath}/web/ve/aplct/fndtnEnhanceTrn/eduAplctPop.do"
|
||||||
, 800
|
, 850
|
||||||
, 800
|
, 900
|
||||||
, data
|
, data
|
||||||
, "N"
|
, "N"
|
||||||
, "eduRegPopup"
|
, "eduRegPopup"
|
||||||
|
|||||||
@ -295,7 +295,7 @@ $(document).ready(function(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
commonPopLayeropen(
|
commonPopLayeropen(
|
||||||
"${pageContext.request.contextPath}/web/ve/aplct/fndtnEnhanceTrn/eduRegPopup.do"
|
"${pageContext.request.contextPath}/web/ve/aplct/fndtnEnhanceTrn/eduAplctPop.do"
|
||||||
, 800
|
, 800
|
||||||
, 800
|
, 800
|
||||||
, data
|
, data
|
||||||
@ -366,30 +366,6 @@ $(document).ready(function(){
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="tb_tit02">
|
|
||||||
<div class="tb_tit02_left">
|
|
||||||
<div class="t_best">이달의 과정</div>
|
|
||||||
</div>
|
|
||||||
<div class="btn_wrap1">
|
|
||||||
<!-- <button type="button" title="베스트 더보기" class="con_more" onclick="location.href=''">더보기</button> -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="best_list">
|
|
||||||
|
|
||||||
<c:forEach var="list" items="${courseOfTheMonthList}" begin="0" end="3">
|
|
||||||
<div class="best_con">
|
|
||||||
<input type="hidden" id="strtPnttm" value="${list.strtPnttm }">
|
|
||||||
<input type="hidden" id="endPnttm" value="${list.endPnttm }">
|
|
||||||
<ul>
|
|
||||||
<li class="con_title"><c:out value="${list.prcsNm}"/></li>
|
|
||||||
<li class="con_date"><c:out value="${list.eduStrtPnttm}"/>~<c:out value="${list.eduDdlnPnttm}"/></li>
|
|
||||||
<li class="con_btn"><button type="button" title="수강신청" onclick="fncGoDetail('<c:out value="${list.prcsAplctPrdOrd}"/>');">상세정보</button></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</c:forEach>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- tab -->
|
<!-- tab -->
|
||||||
<ul class="tab tab_02">
|
<ul class="tab tab_02">
|
||||||
<li class="tab_li on"><button type="button" class="tab_button" data-info="list">리스트형</button></li>
|
<li class="tab_li on"><button type="button" class="tab_button" data-info="list">리스트형</button></li>
|
||||||
@ -610,4 +586,29 @@ $(document).ready(function(){
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</form:form>
|
</form:form>
|
||||||
|
|
||||||
|
<div class="tb_tit02">
|
||||||
|
<div class="tb_tit02_left">
|
||||||
|
<div class="t_best">이달의 과정</div>
|
||||||
|
</div>
|
||||||
|
<div class="btn_wrap1">
|
||||||
|
<!-- <button type="button" title="베스트 더보기" class="con_more" onclick="location.href=''">더보기</button> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="best_list">
|
||||||
|
|
||||||
|
<c:forEach var="list" items="${courseOfTheMonthList}" begin="0" end="3">
|
||||||
|
<div class="best_con">
|
||||||
|
<input type="hidden" id="strtPnttm" value="${list.strtPnttm }">
|
||||||
|
<input type="hidden" id="endPnttm" value="${list.endPnttm }">
|
||||||
|
<ul>
|
||||||
|
<li class="con_title"><c:out value="${list.prcsNm}"/></li>
|
||||||
|
<li class="con_date"><c:out value="${list.eduStrtPnttm}"/>~<c:out value="${list.eduDdlnPnttm}"/></li>
|
||||||
|
<li class="con_btn"><button type="button" title="수강신청" onclick="fncGoDetail('<c:out value="${list.prcsAplctPrdOrd}"/>');">상세정보</button></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</c:forEach>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -17,6 +17,12 @@
|
|||||||
<style>
|
<style>
|
||||||
.duet-date__dialog-content,.duet-date__dialog{max-width:400px;width:364px;}
|
.duet-date__dialog-content,.duet-date__dialog{max-width:400px;width:364px;}
|
||||||
.popup_wrap.popType01{left: 25%;width: 50%;}
|
.popup_wrap.popType01{left: 25%;width: 50%;}
|
||||||
|
.twoRow{width: 100%;}
|
||||||
|
input::placeholder {
|
||||||
|
/* color: red; */
|
||||||
|
font-size: 0.7em;
|
||||||
|
/* font-style: italic; */
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<script type="text/javaScript" language="javascript">
|
<script type="text/javaScript" language="javascript">
|
||||||
|
|
||||||
@ -42,28 +48,40 @@ $(document).ready(function(){
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// value 체크
|
||||||
|
// 20231130 이호영
|
||||||
function fnValidation(){
|
function fnValidation(){
|
||||||
var chrgNm = document.popForm.chrgNm.value;
|
|
||||||
var insttNm = document.popForm.insttNm.value;
|
|
||||||
var dBirth = document.popForm.dBirth.value;
|
|
||||||
|
|
||||||
if(chrgNm == ''){
|
var valChk = true
|
||||||
alert('성명을 입력해 주세요.');
|
|
||||||
return false;
|
// 텍스트 입력 필드에 값이 있는지 확인
|
||||||
}else if(insttNm ==''){
|
$('input[type="text"]').each(function() {
|
||||||
alert('소속기업을 입력해 주세요.');
|
if ($(this).val() == '') {
|
||||||
return false;
|
var fieldName = $(this).closest('td').prev('th').find('p').text();
|
||||||
}else if(dBirth ==''){
|
alert(fieldName + '를 입력해주세요.');
|
||||||
|
$(this).focus();
|
||||||
|
valChk = false
|
||||||
|
return false; // 함수 실행 중지
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// duet-date라서 name밖에 없음
|
||||||
|
var $dBirth = $('input[name="dBirth"]');
|
||||||
|
if($dBirth.val() ==''){
|
||||||
alert('생년월일을 입력해 주세요.');
|
alert('생년월일을 입력해 주세요.');
|
||||||
|
$dBirth.focus();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
// alert 두번 방지 if
|
||||||
if(!$('#chkY').prop("checked")){
|
if(valChk){
|
||||||
alert('개인정보 처리 동의해 주세요.')
|
if(!$('#chkY').prop("checked")){
|
||||||
return false;
|
alert('개인정보 처리 동의해 주세요.')
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
|
||||||
|
return valChk;
|
||||||
}
|
}
|
||||||
|
|
||||||
function fncEduReg(prcsAplctPrdOrd){
|
function fncEduReg(prcsAplctPrdOrd){
|
||||||
@ -72,12 +90,6 @@ $(document).ready(function(){
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
var regForm2 = document.regForm2;
|
|
||||||
regForm2.prcsAplctPrdOrd.value = prcsAplctPrdOrd;
|
|
||||||
regForm2.chrgNm.value = document.popForm.chrgNm.value;
|
|
||||||
regForm2.insttNm.value = document.popForm.insttNm.value;
|
|
||||||
regForm2.dBirth.value = document.popForm.dBirth.value;
|
|
||||||
|
|
||||||
var data = new FormData(document.getElementById("regForm2"));
|
var data = new FormData(document.getElementById("regForm2"));
|
||||||
if(confirm("신청하시겠습니까?")){
|
if(confirm("신청하시겠습니까?")){
|
||||||
var url = "${pageContext.request.contextPath}/web/ve/aplct/fndtnEnhanceTrn/eduRegAjax.do";
|
var url = "${pageContext.request.contextPath}/web/ve/aplct/fndtnEnhanceTrn/eduRegAjax.do";
|
||||||
@ -108,15 +120,10 @@ $(document).ready(function(){
|
|||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<form name="regForm2" id="regForm2">
|
|
||||||
<input type="hidden" name="prcsAplctPrdOrd" value="${vEPrcsDetailVO.prcsAplctPrdOrd}">
|
|
||||||
<input type="hidden" name="chrgNm">
|
|
||||||
<input type="hidden" name="insttNm">
|
|
||||||
<input type="hidden" name="dBirth">
|
|
||||||
<input type="hidden" name="eduAplctOrd" value="${vEPrcsDetailVO.eduAplctOrd}">
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<form id="popForm" name="popForm" method="post">
|
<form id="regForm2" name="regForm2" method="post">
|
||||||
|
<input type="hidden" name="prcsAplctPrdOrd" value="${vEPrcsDetailVO.prcsAplctPrdOrd}">
|
||||||
|
<input type="hidden" name="eduAplctOrd" value="${vEPrcsDetailVO.eduAplctOrd}">
|
||||||
<!-- 신청인정보 -->
|
<!-- 신청인정보 -->
|
||||||
<div class="tooltip-wrap q_pop">
|
<div class="tooltip-wrap q_pop">
|
||||||
<div class="popup_wrap popType01" tabindex="0" data-tooltip-con="target_confirm_popup" data-focus="target_confirm_popup" data-focus-prev="target_confirm_popup_close">
|
<div class="popup_wrap popType01" tabindex="0" data-tooltip-con="target_confirm_popup" data-focus="target_confirm_popup" data-focus-prev="target_confirm_popup_close">
|
||||||
@ -130,7 +137,9 @@ $(document).ready(function(){
|
|||||||
<table>
|
<table>
|
||||||
<caption>신청인정보를 입력하는 표</caption>
|
<caption>신청인정보를 입력하는 표</caption>
|
||||||
<colgroup>
|
<colgroup>
|
||||||
<col style="width: 145px;">
|
<col style="width: 170px;">
|
||||||
|
<col style="width: auto;">
|
||||||
|
<col style="width: 170px;">
|
||||||
<col style="width: auto;">
|
<col style="width: auto;">
|
||||||
</colgroup>
|
</colgroup>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -139,18 +148,8 @@ $(document).ready(function(){
|
|||||||
<p>성명</p>
|
<p>성명</p>
|
||||||
</th>
|
</th>
|
||||||
<td>
|
<td>
|
||||||
<input type="text" name="chrgNm" id="chrgNm"/>
|
<input type="text" class="twoRow" name="chrgNm" id="chrgNm"/>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th scope="row">
|
|
||||||
<p>소속기업</p>
|
|
||||||
</th>
|
|
||||||
<td>
|
|
||||||
<input type="text" name="insttNm" id="insttNm"/>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th scope="row">
|
<th scope="row">
|
||||||
<p>생년월일</p>
|
<p>생년월일</p>
|
||||||
</th>
|
</th>
|
||||||
@ -160,9 +159,39 @@ $(document).ready(function(){
|
|||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th scope="row">
|
||||||
|
<p>소속기업</p>
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" class="twoRow" name="insttNm" id="insttNm"/>
|
||||||
|
</td>
|
||||||
|
<th scope="row">
|
||||||
|
<p>분야</p>
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<input placeholder="어문, 음악, 영상, SW, 연극 등" type="text" class="twoRow" name="fld" id="fld"/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th scope="row">
|
||||||
|
<p>저작권 교육 수강 여부</p>
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" class="lctrYn" name="lctrYn" id="lctrYn"/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th scope="row">
|
||||||
|
<p>교육관련 사전질의</p>
|
||||||
|
</th>
|
||||||
|
<td colspan="2">
|
||||||
|
<input type="text" name="prvsQs" id="prvsQs" style="width: 100%;"/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2">
|
<td colspan="3">
|
||||||
<pre>개인정보 처리 동의서
|
<pre>개인정보 처리 동의서
|
||||||
한국저작권위원회에서는 귀하의 개인정보를 중요시하며, 개인정보보호법 제15조, 제17조, 제22조, 제23조 및 제24조에 따라 아래와 같이 개인정보 처리에 관하여 동의를 얻고자 합니다.
|
한국저작권위원회에서는 귀하의 개인정보를 중요시하며, 개인정보보호법 제15조, 제17조, 제22조, 제23조 및 제24조에 따라 아래와 같이 개인정보 처리에 관하여 동의를 얻고자 합니다.
|
||||||
|
|
||||||
|
|||||||
@ -84,4 +84,13 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="btn_wrap btn_layout01">
|
||||||
|
<div class="btn_left">
|
||||||
|
</div>
|
||||||
|
<div class="btn_center">
|
||||||
|
<button type="button" class="btnType08">교육신청</button>
|
||||||
|
</div>
|
||||||
|
<div class="btn_right">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -23,12 +23,15 @@
|
|||||||
$("#listForm").attr("action","${pageContext.request.contextPath}/web/ve/aplct/adultVisitEdu/eduAplct/eduAplctReg.do").submit();
|
$("#listForm").attr("action","${pageContext.request.contextPath}/web/ve/aplct/adultVisitEdu/eduAplct/eduAplctReg.do").submit();
|
||||||
}
|
}
|
||||||
|
|
||||||
function fncGoDetail(eduAplctOrd){
|
|
||||||
var listForm = document.listForm ;
|
function fncGoDetail(prcsAplctPrdOrd){
|
||||||
listForm.eduAplctOrd.value = eduAplctOrd ;
|
var viewForm = document.viewForm ;
|
||||||
$("#listForm").attr("action","${pageContext.request.contextPath}/web/ve/aplct/adultVisitEdu/eduAplct/eduAplctDetail.do").submit();
|
viewForm.prcsAplctPrdOrd.value = prcsAplctPrdOrd ;
|
||||||
|
viewForm.action = "<c:url value='/web/ve/aplct/sspnIdtmt/eduAplctDetail.do'/>";
|
||||||
|
viewForm.submit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function fncGoList(){
|
function fncGoList(){
|
||||||
linkPage(1);
|
linkPage(1);
|
||||||
}
|
}
|
||||||
@ -102,6 +105,9 @@
|
|||||||
<!-- content -->
|
<!-- content -->
|
||||||
<div class="cont_wrap" id="sub">
|
<div class="cont_wrap" id="sub">
|
||||||
|
|
||||||
|
<form name="viewForm" id="viewForm">
|
||||||
|
<input type="hidden" name="prcsAplctPrdOrd">
|
||||||
|
</form>
|
||||||
<form:form id="listForm" name="listForm" commandName="vEEduAplctVO">
|
<form:form id="listForm" name="listForm" commandName="vEEduAplctVO">
|
||||||
<input type="hidden" name="pageIndex" value="<c:out value='${vEEduAplctVO.pageIndex}' default='1' />"/>
|
<input type="hidden" name="pageIndex" value="<c:out value='${vEEduAplctVO.pageIndex}' default='1' />"/>
|
||||||
<input type="hidden" name="searchSortCnd" value="<c:out value="${vEEduAplctVO.searchSortCnd}" />" />
|
<input type="hidden" name="searchSortCnd" value="<c:out value="${vEEduAplctVO.searchSortCnd}" />" />
|
||||||
|
|||||||
@ -118,14 +118,10 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
alert("1");
|
|
||||||
|
|
||||||
$("select[name=divCd] option[value='10']").remove();
|
$("select[name=divCd] option[value='10']").remove();
|
||||||
alert("12");
|
|
||||||
$("select[name=divCd] option[value='20']").remove();
|
$("select[name=divCd] option[value='20']").remove();
|
||||||
alert("13");
|
|
||||||
$("select[name=divCd] option[value='30']").remove();
|
$("select[name=divCd] option[value='30']").remove();
|
||||||
alert("14");
|
|
||||||
});
|
});
|
||||||
|
|
||||||
function fncScholList(paramObj) {
|
function fncScholList(paramObj) {
|
||||||
@ -368,12 +364,21 @@
|
|||||||
$('input[name=strtTm]:eq('+idx+')').focus();
|
$('input[name=strtTm]:eq('+idx+')').focus();
|
||||||
return flag = false;
|
return flag = false;
|
||||||
}
|
}
|
||||||
|
if($(this).find('input[name=strtTm]').val().indexOf('선택') != -1){
|
||||||
|
alert('교육시작 시간을 입력해주세요.');
|
||||||
|
$('input[name=strtTm]:eq('+idx+')').focus();
|
||||||
|
return flag = false;
|
||||||
|
}
|
||||||
if($(this).find('input[name=endTm]').val() == ''){
|
if($(this).find('input[name=endTm]').val() == ''){
|
||||||
alert('교육종료 시간을 입력해주세요.');
|
alert('교육종료 시간을 입력해주세요.');
|
||||||
$('input[name=endTm]:eq('+idx+')').focus();
|
$('input[name=endTm]:eq('+idx+')').focus();
|
||||||
return flag = false;
|
return flag = false;
|
||||||
}
|
}
|
||||||
|
if($(this).find('input[name=endTm]').val().indexOf('선택') != -1){
|
||||||
|
alert('교육종료 시간을 입력해주세요.');
|
||||||
|
$('input[name=endTm]:eq('+idx+')').focus();
|
||||||
|
return flag = false;
|
||||||
|
}
|
||||||
if($(this).find('select[name=divCd]').val() == ''){
|
if($(this).find('select[name=divCd]').val() == ''){
|
||||||
alert('구분을 선택해주세요.');
|
alert('구분을 선택해주세요.');
|
||||||
$('select[name=divCd]:eq('+idx+')').focus();
|
$('select[name=divCd]:eq('+idx+')').focus();
|
||||||
@ -441,10 +446,29 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*작동안되어서 하기로 대체
|
||||||
if($("#agree").length > 0 && $('#agree').val() != 'Y'){
|
if($("#agree").length > 0 && $('#agree').val() != 'Y'){
|
||||||
alert('개인정보 수집 및 이용 목적에 동의하셔야합니다.');
|
alert('개인정보 수집 및 이용 목적에 동의하셔야합니다.');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
var fnAgree = true;
|
||||||
|
|
||||||
|
$('input:checkbox[name="agree"]:checked').each(function(idx) {
|
||||||
|
/*
|
||||||
|
if($(this).attr("class") != "60") {
|
||||||
|
alert("선택한 목록 중 교욱확정알림이 불가능한 건이 있습니다.");
|
||||||
|
fnAgree = true;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
fnAgree = false;
|
||||||
|
});
|
||||||
|
|
||||||
|
if(fnAgree){
|
||||||
|
alert('개인정보 수집 및 이용 목적에 동의하셔야합니다.');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -416,12 +416,26 @@ var psblFlag = "Y";//학생 신청가능기간여부 체크
|
|||||||
$('input[name=strtTm]:eq('+idx+')').focus();
|
$('input[name=strtTm]:eq('+idx+')').focus();
|
||||||
return flag = false;
|
return flag = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if($(this).find('input[name=strtTm]').val().indexOf('선택') != -1){
|
||||||
|
alert('교육시작 시간을 입력해주세요.');
|
||||||
|
$('input[name=strtTm]:eq('+idx+')').focus();
|
||||||
|
return flag = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if($(this).find('input[name=endTm]').val() == ''){
|
if($(this).find('input[name=endTm]').val() == ''){
|
||||||
alert('교육종료 시간을 입력해주세요.');
|
alert('교육종료 시간을 입력해주세요.');
|
||||||
$('input[name=endTm]:eq('+idx+')').focus();
|
$('input[name=endTm]:eq('+idx+')').focus();
|
||||||
return flag = false;
|
return flag = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if($(this).find('input[name=endTm]').val().indexOf('선택') != -1){
|
||||||
|
alert('교육종료 시간을 입력해주세요.');
|
||||||
|
$('input[name=endTm]:eq('+idx+')').focus();
|
||||||
|
return flag = false;
|
||||||
|
}
|
||||||
|
|
||||||
if($(this).find('select[name=divCd]').val() == ''){
|
if($(this).find('select[name=divCd]').val() == ''){
|
||||||
alert('구분을 선택해주세요.');
|
alert('구분을 선택해주세요.');
|
||||||
$('select[name=divCd]:eq('+idx+')').focus();
|
$('select[name=divCd]:eq('+idx+')').focus();
|
||||||
@ -637,7 +651,19 @@ var psblFlag = "Y";//학생 신청가능기간여부 체크
|
|||||||
alert("신청가능한 기간이 아닙니다.\n\n"+returnData.message+"\n\n(교사, 학부모 대상 교육은 ‘찾아가는 저작권 교육(성인)'에서 상시 신청 가능합니다)");
|
alert("신청가능한 기간이 아닙니다.\n\n"+returnData.message+"\n\n(교사, 학부모 대상 교육은 ‘찾아가는 저작권 교육(성인)'에서 상시 신청 가능합니다)");
|
||||||
//location.href="<c:url value='/web/main/mainPage.do'/>"
|
//location.href="<c:url value='/web/main/mainPage.do'/>"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
psblFlag = 'N';
|
psblFlag = 'N';
|
||||||
|
|
||||||
|
|
||||||
|
//저작권배움터 수정요청사항(r1.2023.11.23.).pptx p.109 요구사항
|
||||||
|
$('#createForm select').prop('disabled', true);
|
||||||
|
$('#createForm input').prop('disabled', true);
|
||||||
|
$('#createForm button').prop('disabled', true);
|
||||||
|
|
||||||
|
// Disable all radio buttons
|
||||||
|
// $('input[type="radio"]').prop('disabled', true);
|
||||||
|
|
||||||
}else{
|
}else{
|
||||||
$("input[name=rndsOrd]").val(returnData.rndsOrd);
|
$("input[name=rndsOrd]").val(returnData.rndsOrd);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -665,9 +665,19 @@
|
|||||||
<th scope="row">
|
<th scope="row">
|
||||||
<p>숙박신청여부</p>
|
<p>숙박신청여부</p>
|
||||||
</th>
|
</th>
|
||||||
|
<!-- 교육일자가 지났을 시 숙박신청 막기 -->
|
||||||
|
<c:set var="now" value="<%=new java.util.Date()%>" />
|
||||||
|
<c:set var="today"><fmt:formatDate value="${now}" pattern="yyyyMMdd" /></c:set>
|
||||||
|
<c:set var="eduDt" value="${fn:replace(info.eduHopeDt, '.', '')}" />
|
||||||
|
|
||||||
<c:if test="${acmdtAplctCheck eq 'N'}">
|
<c:if test="${acmdtAplctCheck eq 'N'}">
|
||||||
<td colspan="4">
|
<td colspan="4">
|
||||||
<button type="button" class="btnType01" data-tooltip="sub51_pop01" title="팝업 열림">숙박 신청</button>
|
<c:if test="${eduDt <= today}">
|
||||||
|
마감
|
||||||
|
</c:if>
|
||||||
|
<c:if test="${eduDt > today}">
|
||||||
|
<button type="button" class="btnType01" data-tooltip="sub51_pop01" title="팝업 열림">숙박 신청</button>
|
||||||
|
</c:if>
|
||||||
</td>
|
</td>
|
||||||
</c:if>
|
</c:if>
|
||||||
<c:if test="${acmdtAplctCheck eq 'Y'}">
|
<c:if test="${acmdtAplctCheck eq 'Y'}">
|
||||||
@ -697,7 +707,12 @@
|
|||||||
</th>
|
</th>
|
||||||
<c:if test="${acmdtAplctCheck eq 'N'}">
|
<c:if test="${acmdtAplctCheck eq 'N'}">
|
||||||
<td>
|
<td>
|
||||||
<button type="button" class="btnType01" data-tooltip="sub51_pop01" title="팝업 열림">숙박 신청</button>
|
<c:if test="${eduDt < today}">
|
||||||
|
마감
|
||||||
|
</c:if>
|
||||||
|
<c:if test="${eduDt >= today}">
|
||||||
|
<button type="button" class="btnType01" data-tooltip="sub51_pop01" title="팝업 열림">숙박 신청</button>
|
||||||
|
</c:if>
|
||||||
</td>
|
</td>
|
||||||
</c:if>
|
</c:if>
|
||||||
<c:if test="${acmdtAplctCheck eq 'Y'}">
|
<c:if test="${acmdtAplctCheck eq 'Y'}">
|
||||||
|
|||||||
@ -177,8 +177,8 @@ input[type="text"] {height: 40px; padding: 0 15px; font-size: 16px; color: #222;
|
|||||||
input[type="text"]:read-only {background-color: #f5f5f5; border: 1px solid #d5d5d5;}
|
input[type="text"]:read-only {background-color: #f5f5f5; border: 1px solid #d5d5d5;}
|
||||||
input[type="text"]::placeholder {color: #999;}
|
input[type="text"]::placeholder {color: #999;}
|
||||||
input[type="text"]:valid {color: #555;}
|
input[type="text"]:valid {color: #555;}
|
||||||
input[type="checkbox"]+label {color: #555; font-size: 16px; font-weight: 300; line-height: 1; vertical-align: middle;}
|
input[type="checkbox"]+label {color: #555; font-size: 16px; font-weight: 400; line-height: 1; vertical-align: middle;}
|
||||||
input[type="radio"]+label {color: #555; font-size: 16px; font-weight: 300; line-height: 1; vertical-align: middle;}
|
input[type="radio"]+label {color: #555; font-size: 16px; font-weight: 400; line-height: 1; vertical-align: middle;}
|
||||||
textarea {border: 1px solid #d5d5d5; border-radius: 5px;}
|
textarea {border: 1px solid #d5d5d5; border-radius: 5px;}
|
||||||
textarea::placeholder {color: #000;}
|
textarea::placeholder {color: #000;}
|
||||||
select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; padding: 0 50px 0 15px; font-size: 16px; color: #222; background-image: url(../images/content/select.png); background-repeat: no-repeat; background-position: calc(100% - 15px) center; color: #666;}
|
select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; padding: 0 50px 0 15px; font-size: 16px; color: #222; background-image: url(../images/content/select.png); background-repeat: no-repeat; background-position: calc(100% - 15px) center; color: #666;}
|
||||||
@ -209,6 +209,8 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa
|
|||||||
.btnType06:hover{background-color: #f1f5fb; transition: background-color .1s linear;}
|
.btnType06:hover{background-color: #f1f5fb; transition: background-color .1s linear;}
|
||||||
.btnType07{border: 1px solid #d04400; background-color: #fefaf7; color: #d04400;}
|
.btnType07{border: 1px solid #d04400; background-color: #fefaf7; color: #d04400;}
|
||||||
.btnType07:hover{background-color: #fdf3ed; transition: background-color .1s linear;}
|
.btnType07:hover{background-color: #fdf3ed; transition: background-color .1s linear;}
|
||||||
|
.btnType08{background-color: #3a72db; color: #fff; width:200px;}
|
||||||
|
.btnType08:hover{background-color: #1854c3; transition: background-color .1s linear;}
|
||||||
|
|
||||||
/* calendar */
|
/* calendar */
|
||||||
.calendar_wrap {display: inline-block; position: relative;}
|
.calendar_wrap {display: inline-block; position: relative;}
|
||||||
@ -228,7 +230,7 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa
|
|||||||
.tab .tab_li.on .tab_button{position:relative;z-index:20;margin:-5px 0 0 0;font-weight:500;color:#fff;}
|
.tab .tab_li.on .tab_button{position:relative;z-index:20;margin:-5px 0 0 0;font-weight:500;color:#fff;}
|
||||||
|
|
||||||
.tab_content{display:none;}
|
.tab_content{display:none;}
|
||||||
.tab_content.on{display:block;}
|
.tab_content.on{display:block; margin:0 0 50px 0; border-bottom:1px solid #f37632;}
|
||||||
|
|
||||||
/* table title */
|
/* table title */
|
||||||
.tb_tit01 {display: flex; width: 100%; justify-content: space-between; align-items: flex-end; margin-bottom: 15px;}
|
.tb_tit01 {display: flex; width: 100%; justify-content: space-between; align-items: flex-end; margin-bottom: 15px;}
|
||||||
@ -253,7 +255,7 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa
|
|||||||
.tb_type01>table>tbody>tr>th,.tb_type01>table>tbody>tr>td{ font-size: 16px; text-align: left;box-sizing: border-box;}
|
.tb_type01>table>tbody>tr>th,.tb_type01>table>tbody>tr>td{ font-size: 16px; text-align: left;box-sizing: border-box;}
|
||||||
.tb_type01>table>tbody>tr>th{background-color: #f5f5f5; font-weight: 400; vertical-align: top; padding-top: 19px; padding-left: 20px; padding-bottom: 16px;}
|
.tb_type01>table>tbody>tr>th{background-color: #f5f5f5; font-weight: 400; vertical-align: top; padding-top: 19px; padding-left: 20px; padding-bottom: 16px;}
|
||||||
.tb_type01>table>tbody>tr>th p {line-height: 1.3;}
|
.tb_type01>table>tbody>tr>th p {line-height: 1.3;}
|
||||||
.tb_type01>table>tbody>tr>td{padding: 12px 20px; height: 60px; font-weight: 300; color: #555; vertical-align: middle;}
|
.tb_type01>table>tbody>tr>td{padding: 12px 20px; height: 60px; font-weight: 400; color: #555; vertical-align: middle;}
|
||||||
.tb_type01>table>tbody>tr>td input[type="text"] {height: 40px;padding: 0 15px; border-radius: 5px; font-size: 16px; box-sizing: border-box;}
|
.tb_type01>table>tbody>tr>td input[type="text"] {height: 40px;padding: 0 15px; border-radius: 5px; font-size: 16px; box-sizing: border-box;}
|
||||||
.tb_type01>table>tbody>tr>td input[type="radio"]+label {margin-right: 10px;}
|
.tb_type01>table>tbody>tr>td input[type="radio"]+label {margin-right: 10px;}
|
||||||
.tb_type01>table>tbody>tr>td input[type="checkbox"]+label {margin-right: 10px;}
|
.tb_type01>table>tbody>tr>td input[type="checkbox"]+label {margin-right: 10px;}
|
||||||
@ -273,7 +275,7 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa
|
|||||||
|
|
||||||
|
|
||||||
/* 교육기반강화연수 */
|
/* 교육기반강화연수 */
|
||||||
.tb_tit02 {display: flex; width: 100%; justify-content: space-between; align-items: flex-end; margin:-5px 0 15px 0;}
|
.tb_tit02 {display: flex; width: 100%; justify-content: space-between; align-items: flex-end; margin:0 0 15px 0;}
|
||||||
.tb_tit02>p {font-size: 18px;}
|
.tb_tit02>p {font-size: 18px;}
|
||||||
.tb_tit02 .tb_tit02_left {display: flex; align-items: center;}
|
.tb_tit02 .tb_tit02_left {display: flex; align-items: center;}
|
||||||
.tb_tit02 .tb_tit02_left p{font-size: 22px; font-weight: 600; color: #222; }
|
.tb_tit02 .tb_tit02_left p{font-size: 22px; font-weight: 600; color: #222; }
|
||||||
@ -312,7 +314,7 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa
|
|||||||
.edup_result ul li.pre {position: relative; padding: 0 0 0 25px;}
|
.edup_result ul li.pre {position: relative; padding: 0 0 0 25px;}
|
||||||
.edup_result ul li.pre::after{position: absolute; content: " ";width: 20px; height: 20px; border-radius: 5px; background-color: #e40000; left: 0; top: 55%; transform: translateY(-50%);}
|
.edup_result ul li.pre::after{position: absolute; content: " ";width: 20px; height: 20px; border-radius: 5px; background-color: #e40000; left: 0; top: 55%; transform: translateY(-50%);}
|
||||||
|
|
||||||
.edu_program { }
|
.edu_program {margin:0 0 50px 0; }
|
||||||
.edu_program table {border-top:2px solid #000; width:100%; }
|
.edu_program table {border-top:2px solid #000; width:100%; }
|
||||||
.edu_program table.ppre {color:#0c3a97; }
|
.edu_program table.ppre {color:#0c3a97; }
|
||||||
.edu_program table th {vertical-align: middle; line-height:20px; background-color: #f5f5f5; border-left:1px solid #d5d5d5; text-align: center; border-bottom: 1px solid #d5d5d5; padding:10px 0;}
|
.edu_program table th {vertical-align: middle; line-height:20px; background-color: #f5f5f5; border-left:1px solid #d5d5d5; text-align: center; border-bottom: 1px solid #d5d5d5; padding:10px 0;}
|
||||||
@ -353,7 +355,7 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa
|
|||||||
.tb_list02 {width:100%; }
|
.tb_list02 {width:100%; }
|
||||||
.tb_list02 table {border-top:2px solid #000; width:100%; }
|
.tb_list02 table {border-top:2px solid #000; width:100%; }
|
||||||
.tb_list02 table th {vertical-align: middle; line-height:20px; background-color: #f5f5f5; text-align: center; border-bottom: 1px solid #d5d5d5; padding:15px 0;}
|
.tb_list02 table th {vertical-align: middle; line-height:20px; background-color: #f5f5f5; text-align: center; border-bottom: 1px solid #d5d5d5; padding:15px 0;}
|
||||||
.tb_list02 table td {vertical-align: middle; line-height:20px; text-align: center; border-bottom: 1px solid #d5d5d5; padding:8px 0;}
|
.tb_list02 table td {vertical-align: middle; line-height:20px; text-align: center; border-bottom: 1px solid #d5d5d5; padding:16px 2px; color:#555;}
|
||||||
.tb_list02 table .btnType02 {border-radius:5px; padding:5px 10px; font-size:15px; margin:0 0 0 3px;}
|
.tb_list02 table .btnType02 {border-radius:5px; padding:5px 10px; font-size:15px; margin:0 0 0 3px;}
|
||||||
.tb_list02 table .btnType03 {border-radius:5px; padding:5px 10px; font-size:15px;}
|
.tb_list02 table .btnType03 {border-radius:5px; padding:5px 10px; font-size:15px;}
|
||||||
.tb_list02 table .btnType04 {border-radius:5px; padding:5px 10px; font-size:15px;}
|
.tb_list02 table .btnType04 {border-radius:5px; padding:5px 10px; font-size:15px;}
|
||||||
@ -433,7 +435,7 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa
|
|||||||
.tb_type02>table>thead>tr>th:last-child,.tb_type02>table>tbody>tr>td:last-child{border-right: 0;}
|
.tb_type02>table>thead>tr>th:last-child,.tb_type02>table>tbody>tr>td:last-child{border-right: 0;}
|
||||||
.tb_type02>table>thead>tr>th{font-weight: 400; background-color: #f5f5f5;}
|
.tb_type02>table>thead>tr>th{font-weight: 400; background-color: #f5f5f5;}
|
||||||
.tb_type02>table>tbody>tr>th {line-height: 1.4;}
|
.tb_type02>table>tbody>tr>th {line-height: 1.4;}
|
||||||
.tb_type02>table>tbody>tr>th, .tb_type02>table>tbody>tr>td {color: #555; font-weight: 300; position: relative;}
|
.tb_type02>table>tbody>tr>th, .tb_type02>table>tbody>tr>td {color: #555; font-weight: 400; position: relative;}
|
||||||
.tb_type02 tbody td input[type="text"].input_time {padding: 0 5px; margin: 0 5px; text-align: center;}
|
.tb_type02 tbody td input[type="text"].input_time {padding: 0 5px; margin: 0 5px; text-align: center;}
|
||||||
.tb_type02 tbody td button {width: 90px; height: 36px; text-align: center; font-size: 16px; border-radius: 5px;}
|
.tb_type02 tbody td button {width: 90px; height: 36px; text-align: center; font-size: 16px; border-radius: 5px;}
|
||||||
.tb_type02 tbody td button.table_del {width: auto; height: auto;}
|
.tb_type02 tbody td button.table_del {width: auto; height: auto;}
|
||||||
@ -469,7 +471,7 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa
|
|||||||
.tb_list01 thead th{height: 55px; padding: 0 5px; box-sizing: border-box; vertical-align: middle;border-bottom: 1px solid #d5d5d5; font-size: 17px; font-weight: 400; color: #222; background-color: #f5f5f5; word-break: keep-all;}
|
.tb_list01 thead th{height: 55px; padding: 0 5px; box-sizing: border-box; vertical-align: middle;border-bottom: 1px solid #d5d5d5; font-size: 17px; font-weight: 400; color: #222; background-color: #f5f5f5; word-break: keep-all;}
|
||||||
.tb_list01 thead th button {font-size: 8px; padding: 0 8px;}
|
.tb_list01 thead th button {font-size: 8px; padding: 0 8px;}
|
||||||
.tb_list01 tbody tr:last-child{border-bottom: 0;}
|
.tb_list01 tbody tr:last-child{border-bottom: 0;}
|
||||||
.tb_list01 tbody th, .tb_list01 tbody td {border-bottom: 1px solid #ececec; font-weight: 300; color: #555555; vertical-align: middle; padding: 16px 2px;font-size: 16px; line-height: 1.3;}
|
.tb_list01 tbody th, .tb_list01 tbody td {border-bottom: 1px solid #ececec; font-weight: 400; color: #555555; vertical-align: middle; padding: 16px 2px;font-size: 16px; line-height: 1.3;}
|
||||||
.tb_list01 tbody th:not(.has_notice), .tb_list01 tbody tr.new_cont td {color: #5c6dc3; text-decoration: underline;}
|
.tb_list01 tbody th:not(.has_notice), .tb_list01 tbody tr.new_cont td {color: #5c6dc3; text-decoration: underline;}
|
||||||
.tb_list01 tbody td.t_left {padding: 0 15px;}
|
.tb_list01 tbody td.t_left {padding: 0 15px;}
|
||||||
.tb_list01 tbody td p {width: 100%; margin: 0 auto; padding: 0 5px; box-sizing: border-box; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;} /* 테이블 안에 내용 ..처리 할때 */
|
.tb_list01 tbody td p {width: 100%; margin: 0 auto; padding: 0 5px; box-sizing: border-box; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;} /* 테이블 안에 내용 ..처리 할때 */
|
||||||
@ -529,7 +531,7 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa
|
|||||||
.list_view .view_info span{position: relative; padding-left: 20px;}
|
.list_view .view_info span{position: relative; padding-left: 20px;}
|
||||||
.list_view .view_info span::before{position: absolute; content: " "; width: 1px; height: 15px; background-color: #d5d5d5; left: 7px; top: 6.5px;}
|
.list_view .view_info span::before{position: absolute; content: " "; width: 1px; height: 15px; background-color: #d5d5d5; left: 7px; top: 6.5px;}
|
||||||
.list_view .view_cont{border-bottom: 1px solid #d5d5d5;padding: 40px 30px;}
|
.list_view .view_cont{border-bottom: 1px solid #d5d5d5;padding: 40px 30px;}
|
||||||
.list_view .view_cont p{font-size: 18px; font-weight: 300; box-sizing: border-box; line-height: 1.4; word-break: break-word;}
|
.list_view .view_cont p{font-size: 18px; font-weight: 400; color:#555; box-sizing: border-box; line-height: 1.4; word-break: break-word;}
|
||||||
|
|
||||||
.list_view .file_list{width: 100%; border-bottom: 1px solid #d5d5d5; padding: 20px 30px; box-sizing: border-box;}
|
.list_view .file_list{width: 100%; border-bottom: 1px solid #d5d5d5; padding: 20px 30px; box-sizing: border-box;}
|
||||||
.list_view .file_list td{display: flex; font-size: 18px; font-weight: 300; margin-bottom: 10px}
|
.list_view .file_list td{display: flex; font-size: 18px; font-weight: 300; margin-bottom: 10px}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user