diff --git a/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/VEPrcsDetailVO.java b/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/VEPrcsDetailVO.java index 58296bd4..f401af64 100644 --- a/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/VEPrcsDetailVO.java +++ b/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/VEPrcsDetailVO.java @@ -136,6 +136,8 @@ public class VEPrcsDetailVO extends ComDefaultVO implements Serializable { private String cnclAtchFileId; private String cnclCn; + private String imageAtchFileId; + @@ -656,6 +658,12 @@ public class VEPrcsDetailVO extends ComDefaultVO implements Serializable { public void setCnclCn(String cnclCn) { this.cnclCn = cnclCn; } + public String getImageAtchFileId() { + return imageAtchFileId; + } + public void setImageAtchFileId(String imageAtchFileId) { + this.imageAtchFileId = imageAtchFileId; + } } diff --git a/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/VEPrcsService.java b/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/VEPrcsService.java index a6df3403..ca47e14e 100644 --- a/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/VEPrcsService.java +++ b/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/VEPrcsService.java @@ -30,5 +30,7 @@ public interface VEPrcsService { void updatePrcsSort(VEPrcsDetailVO paramVO) throws Exception; void deleteInstr(VEPrcsDetailVO vEPrcsDetailVO); + + void updateImageAtchFileId(VEPrcsDetailVO vEPrcsDetailVO); } diff --git a/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/impl/VEPrcsDAO.java b/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/impl/VEPrcsDAO.java index 338097a5..3c553509 100644 --- a/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/impl/VEPrcsDAO.java +++ b/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/impl/VEPrcsDAO.java @@ -80,5 +80,9 @@ public class VEPrcsDAO extends EgovAbstractDAO { public void deleteInstr(VEPrcsDetailVO vEPrcsDetailVO) { delete("VEPrcsDAO.deleteInstr", vEPrcsDetailVO); } + + public void updateImageAtchFileId(VEPrcsDetailVO vEPrcsDetailVO) { + update("VEPrcsDAO.updateImageAtchFileId", vEPrcsDetailVO); + } } diff --git a/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/impl/VEPrcsServiceImpl.java b/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/impl/VEPrcsServiceImpl.java index ced52f43..7c6e7579 100644 --- a/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/impl/VEPrcsServiceImpl.java +++ b/src/main/java/kcc/ve/instr/tngrVisitEdu/prcsInfo/service/impl/VEPrcsServiceImpl.java @@ -64,5 +64,10 @@ public class VEPrcsServiceImpl implements VEPrcsService { vEPrcsDAO.deleteInstr(vEPrcsDetailVO); } + + @Override + public void updateImageAtchFileId(VEPrcsDetailVO vEPrcsDetailVO) { + vEPrcsDAO.updateImageAtchFileId(vEPrcsDetailVO); + } } diff --git a/src/main/java/kcc/ve/oprtn/fndtnEnhanceTrn/prcsInfoMng/web/FndthPrcsInfoMngController.java b/src/main/java/kcc/ve/oprtn/fndtnEnhanceTrn/prcsInfoMng/web/FndthPrcsInfoMngController.java index 40381480..42e3c5e7 100644 --- a/src/main/java/kcc/ve/oprtn/fndtnEnhanceTrn/prcsInfoMng/web/FndthPrcsInfoMngController.java +++ b/src/main/java/kcc/ve/oprtn/fndtnEnhanceTrn/prcsInfoMng/web/FndthPrcsInfoMngController.java @@ -1,17 +1,21 @@ package kcc.ve.oprtn.fndtnEnhanceTrn.prcsInfoMng.web; import java.util.List; +import java.util.Map; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; +import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.multipart.MultipartFile; +import org.springframework.web.multipart.MultipartHttpServletRequest; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.mvc.support.RedirectAttributes; @@ -20,12 +24,14 @@ import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; import kcc.com.cmm.LoginVO; import kcc.com.cmm.service.EgovFileMngService; import kcc.com.cmm.service.EgovFileMngUtil; +import kcc.com.cmm.service.FileVO; import kcc.com.cmm.util.StringUtil; import kcc.com.utl.user.service.CheckLoginUtil; import kcc.let.uat.uia.service.SsoLoginVO; import kcc.let.utl.fcc.service.EgovCryptoUtil; import kcc.ve.instr.tngrVisitEdu.eduInfo.service.VEEduAplctService; import kcc.ve.instr.tngrVisitEdu.eduInfo.service.VEEduChasiService; +import kcc.ve.instr.tngrVisitEdu.instrInfo.service.VEInstrDetailVO; import kcc.ve.instr.tngrVisitEdu.prcsInfo.service.VEPrcsCmpltDetailService; import kcc.ve.instr.tngrVisitEdu.prcsInfo.service.VEPrcsCntntVO; import kcc.ve.instr.tngrVisitEdu.prcsInfo.service.VEPrcsDetailVO; @@ -104,7 +110,14 @@ public class FndthPrcsInfoMngController { @Resource(name = "EgovFileMngService") private EgovFileMngService fileService; - + + //파일 처리 egov + @Resource(name="EgovFileMngUtil") + private EgovFileMngUtil egovFileMngUtil; + + //파일 처리 egov + @Resource(name = "EgovFileMngService") + private EgovFileMngService fileMngService; /* // 교육신청 서비스단 @@ -325,6 +338,65 @@ public class FndthPrcsInfoMngController { return "oprtn/fndthEnhanceTrn/fndthEduPrcsMngMdfy"; } + /** + * @methodName : instrAplctPhotoPopup + * @author : 이호영 + * @date : 2023.11.14 + * @description : 기반강화 과정 수정 - 이미지 등록 + * @param vEInstrDetailVO + * @param model + * @param request + * @return + * @throws Exception + */ + @RequestMapping(value = "/kccadr/oprtn/fndthEnhanceTrn/popup/fndthEduPhotoPopup.do") + public String instrAplctPhotoPopup(@ModelAttribute("info") VEPrcsDetailVO vEPrcsDetailVO, ModelMap model, HttpServletRequest request) throws Exception { + + //로그인 처리==================================== + //로그인 정보 가져오기 + LoginVO loginVO = checkLoginUtil.getAuthLoginVO(); //권한에 따른 로그인 정보 가져오기 + SsoLoginVO ssoLoginVO = checkLoginUtil.getSSOLoginVO(request); //SSO 로그인 정보 가져오기 + //로그인 처리==================================== + + if(StringUtils.isNotBlank(vEPrcsDetailVO.getImageAtchFileId())){ + FileVO fileVO = new FileVO(); + fileVO.setAtchFileId(vEPrcsDetailVO.getImageAtchFileId()); + List fileList = fileService.selectFileInfs(fileVO); + model.addAttribute("fileList", fileList); + } + return "oprtn/fndthEnhanceTrn/popup/fndthEduPhotoPopup"; + } + + + /** + * @methodName : instrAplctPhotoPopup + * @author : 이호영 + * @date : 2023.11.15 + * @description : 기반강화 과정 등록 - 이미지 등록 + * @param vEPrcsDetailVO + * @param model + * @param request + * @return + * @throws Exception + */ + @RequestMapping(value = "/kccadr/oprtn/fndthEnhanceTrn/popup/fndthEduPhotoRegPopup.do") + public String fndthEduPhotoRegPopup(@ModelAttribute("info") VEPrcsDetailVO vEPrcsDetailVO, ModelMap model, HttpServletRequest request) throws Exception { + + //로그인 처리==================================== + //로그인 정보 가져오기 + LoginVO loginVO = checkLoginUtil.getAuthLoginVO(); //권한에 따른 로그인 정보 가져오기 + SsoLoginVO ssoLoginVO = checkLoginUtil.getSSOLoginVO(request); //SSO 로그인 정보 가져오기 + //로그인 처리==================================== + + if(StringUtils.isNotBlank(vEPrcsDetailVO.getImageAtchFileId())){ + FileVO fileVO = new FileVO(); + fileVO.setAtchFileId(vEPrcsDetailVO.getImageAtchFileId()); + List fileList = fileService.selectFileInfs(fileVO); + model.addAttribute("fileList", fileList); + } + return "oprtn/fndthEnhanceTrn/popup/fndthEduPhotoRegPopup"; + } + /** * 기반강화연수과정 화면 */ @@ -360,28 +432,74 @@ public class FndthPrcsInfoMngController { //세부과정 지우고 다시 생성 VEPrcsCntntVO vEPrcsCntntVO = new VEPrcsCntntVO(); vEPrcsCntntVO.setPrcsOrd(vEPrcsDetailVO.getPrcsOrd()); -// int iv = vEPrcsOnlnCntntService.deleteAll(vEPrcsCntntVO); -// String[] s_detailPrcsNm = request.getParameterValues("detailPrcsNm"); - /*for (int i=0;i files = multiRequest.getFileMap(); + + if (!files.isEmpty()) { + //XXX_로 첨부파일 네이밍 + List result = egovFileMngUtil.parseFileInf(files, "fnd_", 0, "", "", ""); + atchFileId = fileMngService.insertFileInfs(result); + } + //첨부파일Id(atchFileId)를 해당 VO atchFileId변수에 저장 + vEPrcsDetailVO.setImageAtchFileId(atchFileId); + vEPrcsService.updateImageAtchFileId(vEPrcsDetailVO); + modelAndView.addObject("result", "success"); + return modelAndView; + } + /** + * @methodName : fndthEduPhotoPopupAjax + * @author : 이호영 + * @date : 2023.11.15 + * @description : 기반강화 과정 등록 - 이미지 등록 - ajax + * @param vEPrcsDetailVO + * @param multiRequest + * @param model + * @param request + * @return + * @throws Exception + */ + @RequestMapping("/kccadr/oprtn/fndthEnhanceTrn/fndthEduPhotoPopupRegAjax.do") + public ModelAndView fndthEduPhotoPopupRegAjax( + @ModelAttribute("vEPrcsDetailVO") VEPrcsDetailVO vEPrcsDetailVO + , final MultipartHttpServletRequest multiRequest + , ModelMap model + , HttpServletRequest request + ) throws Exception { + ModelAndView modelAndView = new ModelAndView(); + modelAndView.setViewName("jsonView"); + + String atchFileId = ""; + final Map files = multiRequest.getFileMap(); + + if (!files.isEmpty()) { + //XXX_로 첨부파일 네이밍 + List result = egovFileMngUtil.parseFileInf(files, "fnd_", 0, "", "", ""); + atchFileId = fileMngService.insertFileInfs(result); + } + //첨부파일Id(atchFileId)를 해당 VO atchFileId변수에 저장 +// vEPrcsService.updateImageAtchFileId(vEPrcsDetailVO); + modelAndView.addObject("result", "success"); + modelAndView.addObject("atchFileId", atchFileId); + return modelAndView; + } + /** diff --git a/src/main/resources/egovframework/sqlmap/let/uss/ion/fms/FmsFile_SQL_Tibero.xml b/src/main/resources/egovframework/sqlmap/let/uss/ion/fms/FmsFile_SQL_Tibero.xml index f2971f60..b1fead99 100644 --- a/src/main/resources/egovframework/sqlmap/let/uss/ion/fms/FmsFile_SQL_Tibero.xml +++ b/src/main/resources/egovframework/sqlmap/let/uss/ion/fms/FmsFile_SQL_Tibero.xml @@ -1,259 +1,259 @@ - - - - - - - - - - - - - INSERT - INTO LETFMSFILE - ( - FMS_ID, - FMS_NM, - CONTENT, - FMS_LINK, - FMS_DOWN_LINK, - REGDT, - MODDT, - REGISTER_ID, - FMS_IMAGE_FILE, - FMS_IMAGE - ) - VALUES - ( - #fmsId#, - #fmsNm#, - #content#, - #fmsLink#, - #fmsDownLink#, - now(), - now(), - #registerId#, - #fmsImageFile#, - #fmsImage# - ) - - - - - - - - - - - - - - - - - - - - - - - - - UPDATE LETFMSFILE - SET - FMS_NM= #fmsNm#, - CONTENT= #content#, - MODDT= now(), - - FMS_LINK = #fmsLink# , - - - FMS_DOWN_LINK = #fmsDownLink# , - - - FMS_IMAGE_FILE = #fmsImageFile# , - - REGISTER_ID= #registerId# - WHERE FMS_ID=#fmsId# - - - - - INSERT - INTO LETTNFILETEMPDETAIL - ( - USER_ID, - URL, - FILE_SN, - FILE_STRE_COURS, - STRE_FILE_NM, - ORIGNL_FILE_NM, - FILE_EXTSN, - FILE_SIZE - ) - VALUES - ( - #userId#, - #url#, - #fileSn#, - #fileStreCours#, - #streFileNm#, - #orignlFileNm#, - #fileExtsn#, - #fileSize# - ) - - - - - - - + + + + + + + + + + + + + INSERT + INTO LETFMSFILE + ( + FMS_ID, + FMS_NM, + CONTENT, + FMS_LINK, + FMS_DOWN_LINK, + REGDT, + MODDT, + REGISTER_ID, + FMS_IMAGE_FILE, + FMS_IMAGE + ) + VALUES + ( + #fmsId#, + #fmsNm#, + #content#, + #fmsLink#, + #fmsDownLink#, + SYSDATE, + SYSDATE, + #registerId#, + #fmsImageFile#, + #fmsImage# + ) + + + + + + + + + + + + + + + + + + + + + + + + + UPDATE LETFMSFILE + SET + FMS_NM= #fmsNm#, + CONTENT= #content#, + MODDT= SYSDATE, + + FMS_LINK = #fmsLink# , + + + FMS_DOWN_LINK = #fmsDownLink# , + + + FMS_IMAGE_FILE = #fmsImageFile# , + + REGISTER_ID= #registerId# + WHERE FMS_ID=#fmsId# + + + + + INSERT + INTO LETTNFILETEMPDETAIL + ( + USER_ID, + URL, + FILE_SN, + FILE_STRE_COURS, + STRE_FILE_NM, + ORIGNL_FILE_NM, + FILE_EXTSN, + FILE_SIZE + ) + VALUES + ( + #userId#, + #url#, + #fileSn#, + #fileStreCours#, + #streFileNm#, + #orignlFileNm#, + #fileExtsn#, + #fileSize# + ) + + + + + + + \ No newline at end of file diff --git a/src/main/resources/egovframework/sqlmap/ve/instr/VEInstrDetailActvtHstry_SQL_Tibero.xml b/src/main/resources/egovframework/sqlmap/ve/instr/VEInstrDetailActvtHstry_SQL_Tibero.xml index 295384b8..74728ff1 100644 --- a/src/main/resources/egovframework/sqlmap/ve/instr/VEInstrDetailActvtHstry_SQL_Tibero.xml +++ b/src/main/resources/egovframework/sqlmap/ve/instr/VEInstrDetailActvtHstry_SQL_Tibero.xml @@ -54,9 +54,9 @@ , SYSDATE , #aplctAtchFileId# , #cmpnnCn# - , '' - , #frstRegisterId# , SYSDATE + , #frstRegisterId# + , '' , #lastUpdusrId# ) diff --git a/src/main/resources/egovframework/sqlmap/ve/prcs/VEPrcs_SQL_Tibero.xml b/src/main/resources/egovframework/sqlmap/ve/prcs/VEPrcs_SQL_Tibero.xml index 164dc475..f479e1a0 100644 --- a/src/main/resources/egovframework/sqlmap/ve/prcs/VEPrcs_SQL_Tibero.xml +++ b/src/main/resources/egovframework/sqlmap/ve/prcs/VEPrcs_SQL_Tibero.xml @@ -24,24 +24,26 @@ last_updt_pnttm, last_updusr_id, lctr_div_cd, - use_yn + use_yn, + image_atch_file_id - A.PRCS_ORD AS prcsOrd, - A.PRCS_DIV AS prcsDiv, - A.PRCS_KIND AS prcsKind, - A.PRCS_NM AS prcsNm, - A.PRCS_CN AS prcsCn, - A.PRCS_SORT_NO AS prcsSortNo, + A.PRCS_ORD AS prcsOrd, + A.PRCS_DIV AS prcsDiv, + A.PRCS_KIND AS prcsKind, + A.PRCS_NM AS prcsNm, + A.PRCS_CN AS prcsCn, + A.PRCS_SORT_NO AS prcsSortNo, TO_CHAR(A.FRST_REGIST_PNTTM,'YYYY-MM-DD') AS frstRegistPnttm, - A.FRST_REGISTER_ID AS frstRegisterId, + A.FRST_REGISTER_ID AS frstRegisterId, TO_CHAR(A.LAST_UPDT_PNTTM,'YYYY-MM-DD') AS lastUpdtPnttm, - A.LAST_UPDUSR_ID AS lastUpdusrId, - A.LCTR_DIV_CD AS lctrDivCd, - A.USE_YN AS useYn + A.LAST_UPDUSR_ID AS lastUpdusrId, + A.LCTR_DIV_CD AS lctrDivCd, + A.USE_YN AS useYn, + A.IMAGE_ATCH_FILE_ID AS imageAtchFileId @@ -62,7 +64,8 @@ SYSDATE, #lastUpdusrId#, #lctrDivCd#, - #useYn# + #useYn#, + #imageAtchFileId# ) @@ -341,6 +344,16 @@ + + + UPDATE VE_PRCS SET + IMAGE_ATCH_FILE_ID = #imageAtchFileId# + , LAST_UPDUSR_ID = #lastUpdusrId# + , LAST_UPDT_PNTTM = SYSDATE + WHERE PRCS_ORD = #prcsOrd# + + + DELETE FROM VEA_PRCS_APLCT_PRD_INSTR_ASGNM WHERE prcs_aplct_prd_ord = #prcsAplctPrdOrd# diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/trgtMdfy.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/trgtMdfy.jsp index f0406840..8c199bf8 100644 --- a/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/trgtMdfy.jsp +++ b/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/trgtMdfy.jsp @@ -421,7 +421,7 @@ -

첨부파일 가능 용량은 20MB입니다.

업로드 순서는 1.신청서 2.안내문 입니다.

+

첨부파일 가능 용량은 20MB입니다.

diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngDetail.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngDetail.jsp index bc57b2aa..f8141fcf 100644 --- a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngDetail.jsp +++ b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngDetail.jsp @@ -1,150 +1,155 @@ - -<%@ 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="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%> -<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %> -<% - /** - * @Class Name : fndthEduPrcsMngDetail.jsp - * @Description : 기반강화연수 상세화면 - * @Modification Information - * @ - * @ 수정일 수정자 수정내용 - * @ ------- -------- --------------------------- - * @ 2021.12.16 조용준 최초 생성 - * @author 조용주 - * @since 2021.12.16 - * @version 1.0 - * @see - * - */ -%> - - -교육과정관리 - - - - - - - - - - -
-
- - -
-

교육 과정 등록

-
    -
  • -
  • -

    교육콘텐츠

    -
  • -
  • 교육 과정 관리
  • -
  • 교육 과정 등록
  • -
-
- - -
- -
-

교육과정관리

-
-
-
첨부파일 리스트 : 파일명, 종류, 크기, 삭제
- - - - - - - - - - - - - - - - - - - - - - - - - -
교육부문 - -
-
-
-
-
- 이미지를 넣어주세요 -
- -
-
-
-
-
과정명 - -
과정설명 - -
사용여부 - - 사용 - - - 미사용 - -
-
- - - -
-
-
-
-
-
- - -
-
- - - - - - - + +<%@ 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="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%> +<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %> +<% + /** + * @Class Name : fndthEduPrcsMngDetail.jsp + * @Description : 기반강화연수 상세화면 + * @Modification Information + * @ + * @ 수정일 수정자 수정내용 + * @ ------- -------- --------------------------- + * @ 2021.12.16 조용준 최초 생성 + * @author 조용주 + * @since 2021.12.16 + * @version 1.0 + * @see + * + */ +%> + + +교육과정관리 + + + + + + + + + + +
+
+ + +
+

교육과정상세

+
    +
  • +
  • +

    실무자역량강화(기반강화연수관리)

    +
  • +
  • 기반강화연수관리
  • +
+
+ + +
+ +
+

교육과정관리

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
교육부문 + +
+
+
+
+
+ + 이미지를 넣어주세요 + + + 사진?atchFileId=' /> + + +
+ +
+
+
+
+
과정명 + +
과정설명 + +
사용여부 + + 사용 + + + 미사용 + +
+
+ + + +
+
+
+
+
+
+ + +
+
+
+
+
+
+ + + diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngList.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngList.jsp index ec79c718..96f0c4cd 100644 --- a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngList.jsp +++ b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngList.jsp @@ -1,287 +1,287 @@ - -<%@ 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="validator" uri="http://www.springmodules.org/tags/commons-validator" %> -<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%> -<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %> -<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> -<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%> - -<% - /** - * @Class Name : fndthEduPrcsMngList.jsp - * @Description : 기반강화연수 과정관리 목록 - * @Modification Information - * @ - * @ 수정일 수정자 수정내용 - * @ ------- -------- --------------------------- - * @ 2021.12.14 조용준 최초 생성 - * @author 조용준 - * @since 2021.12.14 - * @version 1.0 - * @see - * - */ -%> - - - - - - 교육과정관리 - - - - - " /> - " /> - - - -
-
- - -
-

과정관리목록

-
    -
  • -
  • -

    기반강화연수관리

    -
  • -
  • 과정관리목록
  • -
-
- - -
-
-

교육 과정 관리

-
- -
-
-
- - -
- -
- ~ -
- -
- - - -
-
-
- -
-

건의 접수가 검색되었습니다.

-
- - <%----%> -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
교육부문과정명설명등록일시사용여부
- - ');" style="cursor:pointer;"> - - ');" style="cursor:pointer;"> - - - - - - 사용 - - - 미사용 - -
-
- - - -
- -
-
-
-
-
-
-
- -
-
- -
-
-
- - - -
- - - + +<%@ 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="validator" uri="http://www.springmodules.org/tags/commons-validator" %> +<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%> +<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%> + +<% + /** + * @Class Name : fndthEduPrcsMngList.jsp + * @Description : 기반강화연수 과정관리 목록 + * @Modification Information + * @ + * @ 수정일 수정자 수정내용 + * @ ------- -------- --------------------------- + * @ 2021.12.14 조용준 최초 생성 + * @author 조용준 + * @since 2021.12.14 + * @version 1.0 + * @see + * + */ +%> + + + + + + 교육과정관리 + + + + + " /> + " /> + + + +
+
+ + +
+

과정관리목록

+
    +
  • +
  • +

    실무자역량강화(기반강화연수관리)

    +
  • +
  • 과정관리목록
  • +
+
+ + +
+
+

교육 과정 관리

+
+ +
+
+
+ + +
+ +
+ ~ +
+ +
+ + + +
+
+
+ +
+

건의 접수가 검색되었습니다.

+
+ + <%----%> +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
교육부문과정명설명등록일시사용여부
+ + ');" style="cursor:pointer;"> + + ');" style="cursor:pointer;"> + + + + + + 사용 + + + 미사용 + +
+
+ + + +
+ +
+
+
+
+
+
+
+ +
+
+ +
+
+
+ + + +
+ + + diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngMdfy.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngMdfy.jsp index d2594a88..2a447c22 100644 --- a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngMdfy.jsp +++ b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngMdfy.jsp @@ -26,7 +26,7 @@ %> -교육과정관리 +기반강화연수관리 @@ -145,14 +149,13 @@
-

교육 과정 등록

+

교육과정수정

  • -

    교육콘텐츠

    +

    실무자역량강화(기반강화연수관리)

  • -
  • 교육 과정 관리
  • -
  • 교육 과정 등록
  • +
  • 기반강화연수관리
@@ -185,9 +188,17 @@
- 이미지를 넣어주세요 + + 이미지를 넣어주세요 + + + 사진?atchFileId=' /> + + +
+
+
-
diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngReg.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngReg.jsp index 81a05c6b..05cce097 100644 --- a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngReg.jsp +++ b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/fndthEduPrcsMngReg.jsp @@ -1,242 +1,256 @@ - -<%@ 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="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%> -<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%> -<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %> -<% - /** - * @Class Name : fndthEduPrcsMngReg.jsp - * @Description : 기반강화연수 과정 등록 - * @Modification Information - * @ - * @ 수정일 수정자 수정내용 - * @ ------- -------- --------------------------- - * @ 2021.12.16 조용준 최초 생성 - * @author 조용주 - * @since 2021.12.16 - * @version 1.0 - * @see - * - */ -%> - - -교육과정관리 - - - - - - - - - -
-
- - -
-

교육 과정 등록

-
    -
  • -
  • -

    교육콘텐츠

    -
  • -
  • 교육 과정 관리
  • -
  • 교육 과정 등록
  • -
-
- - -
- -
-

교육과정

-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
교육부문 - - -
-
-
-
-
- 이미지를 넣어주세요 -
- -
-
-
-
-<%-- --%> -
과정명 - -
상세교육과정 - -
상태 - -
-
- - - -
-
-
-
-
-
- - -
-
-
-
-
-
- - - + +<%@ 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="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%> +<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%> +<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %> +<% + /** + * @Class Name : fndthEduPrcsMngReg.jsp + * @Description : 기반강화연수 과정 등록 + * @Modification Information + * @ + * @ 수정일 수정자 수정내용 + * @ ------- -------- --------------------------- + * @ 2021.12.16 조용준 최초 생성 + * @author 조용주 + * @since 2021.12.16 + * @version 1.0 + * @see + * + */ +%> + + +교육과정관리 + + + + + + + + + +
+
+ + +
+

교육과정등록

+
    +
  • +
  • +

    실무자역량강화(기반강화연수관리)

    +
  • +
  • 기반강화연수관리
  • +
+
+ + +
+ +
+

교육과정

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
교육부문 + + +
+
+
+
+
+<%-- --%> + 이미지를 넣어주세요 +<%-- --%> +<%-- --%> +<%-- 사진?atchFileId=' /> --%> +<%-- --%> + +
+
+ +
+
+ +
+
+
+ +<%-- --%> +
과정명 + +
상세교육과정 + +
상태 + +
+
+ + + +
+
+
+
+
+
+ + +
+
+
+
+
+
+ + + diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/popup/fndthEduPhotoPopup.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/popup/fndthEduPhotoPopup.jsp new file mode 100644 index 00000000..b9afe304 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/popup/fndthEduPhotoPopup.jsp @@ -0,0 +1,186 @@ + +<%@ 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="validator" uri="http://www.springmodules.org/tags/commons-validator"%> +<% + +/** + * @Class Name : instrAsgnmPopup.jsp + * @Description : 기반강화 교육과정등록 > 이미지 등록 + * @Modification Information + * @ + * @ 수정일 수정자 수정내용 + * @ ------- -------- --------------------------- + * @ 2023.11.14 이호영 최초 생성 + */ +%> + + +강사정보 수정 요청 + + + + + + + + + + +
+
+ + + + " /> + + +
+
+ +
+

+
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + +
파일 명종류크기삭제
+

첨부하실 파일을 마우스끌어서 넣어주세요.

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
파일 명종류크기삭제
+

${fileList.orignlFileNm}

+
+

+
+

+
+ +
+
+
+
+
+
+ +
+
+ +
+
+
+
+ +
+ +
+
+ + diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/popup/fndthEduPhotoRegPopup.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/popup/fndthEduPhotoRegPopup.jsp new file mode 100644 index 00000000..1f4a8c6c --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/oprtn/fndthEnhanceTrn/popup/fndthEduPhotoRegPopup.jsp @@ -0,0 +1,187 @@ + +<%@ 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="validator" uri="http://www.springmodules.org/tags/commons-validator"%> +<% + +/** + * @Class Name : instrAsgnmPopup.jsp + * @Description : 기반강화 교육과정등록 > 이미지 등록 + * @Modification Information + * @ + * @ 수정일 수정자 수정내용 + * @ ------- -------- --------------------------- + * @ 2023.11.14 이호영 최초 생성 + */ +%> + + +강사정보 수정 요청 + + + + + + + + + + +
+
+ + + + " /> + + +
+
+ +
+

+
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + +
파일 명종류크기삭제
+

첨부하실 파일을 마우스끌어서 넣어주세요.

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
파일 명종류크기삭제
+

${fileList.orignlFileNm}

+
+

+
+

+
+ +
+
+
+
+
+
+ +
+
+ +
+
+
+
+ +
+ +
+
+ + diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/tngrVisitEdu/instrMngDetail.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/tngrVisitEdu/instrMngDetail.jsp index 7cf26471..fbdbd959 100644 --- a/src/main/webapp/WEB-INF/jsp/oprtn/tngrVisitEdu/instrMngDetail.jsp +++ b/src/main/webapp/WEB-INF/jsp/oprtn/tngrVisitEdu/instrMngDetail.jsp @@ -494,8 +494,7 @@ - -
+
diff --git a/src/main/webapp/WEB-INF/jsp/uss/ion/fms/FmsFileList.jsp b/src/main/webapp/WEB-INF/jsp/uss/ion/fms/FmsFileList.jsp index c97405d6..7a419ebb 100644 --- a/src/main/webapp/WEB-INF/jsp/uss/ion/fms/FmsFileList.jsp +++ b/src/main/webapp/WEB-INF/jsp/uss/ion/fms/FmsFileList.jsp @@ -1,276 +1,276 @@ -<%-- - Class Name : FmsFileList.jsp - Description : 첨부파일 목록 페이지 - Modification Information - - 수정일 수정자 수정내용 - ------- -------- --------------------------- - 2009.09.16 장동한 최초 생성 - - author : 공통서비스 개발팀 장동한 - since : 2009.09.16 - - Copyright (C) 2009 by MOPAS All right reserved. ---%> -<%@ page contentType="text/html; charset=utf-8"%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> -<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> -<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> -<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> -<% - response.setHeader("Cache-Control","no-store"); - response.setHeader("Pragma","no-cache"); - response.setDateHeader("Expires",0); - if (request.getProtocol().equals("HTTP/1.1")) response.setHeader("Cache-Control", "no-cache"); -%> - - - -메인이미지 관리 - - - - - -
- - - - " /> - " /> - - -
-
-
-

첨부파일관리

-
- -
- -
-

총 건수 :

-
- - - - 제목 : - - - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
번호사이트명제목첨부파일작성자생성일수정
- - - - - - - - - - - - - - - - - - - - ${result.registerId} - -
-
- - - -
-
- -
-
- -
-
- - - - -
-
    - -
-
-
- -
-
- -
-
-
- - - -
-
- - -
-
- - - -
- - +<%-- + Class Name : FmsFileList.jsp + Description : 첨부파일 목록 페이지 + Modification Information + + 수정일 수정자 수정내용 + ------- -------- --------------------------- + 2009.09.16 장동한 최초 생성 + + author : 공통서비스 개발팀 장동한 + since : 2009.09.16 + + Copyright (C) 2009 by MOPAS All right reserved. +--%> +<%@ page contentType="text/html; charset=utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> +<% + response.setHeader("Cache-Control","no-store"); + response.setHeader("Pragma","no-cache"); + response.setDateHeader("Expires",0); + if (request.getProtocol().equals("HTTP/1.1")) response.setHeader("Cache-Control", "no-cache"); +%> + + + +메인이미지 관리 + + + + + +
+ + + + " /> + " /> + + +
+
+
+

첨부파일관리

+
+ +
+ +
+

총 건수 :

+
+ + + + 제목 : + + + + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
번호사이트명제목첨부파일작성자생성일수정
+ + + + + + + + + + + + + + + + + + + + ${result.registerId} + +
+
+ + + +
+
+ +
+
+ +
+
+ + + + +
+
    + +
+
+
+ +
+
+ +
+
+
+ + + +
+
+ + +
+
+ + + +
+ + diff --git a/src/main/webapp/WEB-INF/jsp/web/ve/aplct/fndtnEnhanceTrn/main.jsp b/src/main/webapp/WEB-INF/jsp/web/ve/aplct/fndtnEnhanceTrn/main.jsp index 91a8c1e8..855b596c 100644 --- a/src/main/webapp/WEB-INF/jsp/web/ve/aplct/fndtnEnhanceTrn/main.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/ve/aplct/fndtnEnhanceTrn/main.jsp @@ -1,135 +1,141 @@ -<%@ page contentType="text/html; charset=utf-8"%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> -<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> -<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> -<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> -<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> -<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%> -<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %> -<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%> - -교육신청 목록 > 성인 찾아가는 저작권 교육 > 한국저작권위원회 저작권 교육 시스템 - - - - -
- - - - -
-

대시보드

-
-
    -
  • 신청중 강의

  • -
  • 수강중 강의

  • -
  • 종료된 강의

  • -
- -
-
-
최근 교육 목록
-
-
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - -<%-- - - - - - - - - - - -
최근 교육 목록표
교육과정교육기간신청결과설문조사이수증
');" style="cursor:pointer;"> --%> - - () - - ~ - - - - - - - - 설문완료 - - - - - - - - - - - - - 교육완료 - - - - - - -
-
- -
+<%@ page contentType="text/html; charset=utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> +<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%> +<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %> +<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%> + +교육신청 목록 > 성인 찾아가는 저작권 교육 > 한국저작권위원회 저작권 교육 시스템 + + + + +
+ + + + +
+

대시보드

+
+
    +
  • '"> +
    신청중 강의

    +
  • +
  • '"> +
    수강중 강의

    +
  • +
  • '"> +
    종료된 강의

    +
  • +
+ +
+
+
최근 교육 목록
+
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +<%-- + + + + + + + + + + +
최근 교육 목록표
교육과정교육기간신청결과설문조사이수증
');" style="cursor:pointer;"> --%> + + () + + ~ + + + + + + + + 설문완료 + + + - + + + + + + + + + 교육완료 + + + - + + +
+
+ +
\ No newline at end of file diff --git a/src/main/webapp/visitEdu/usr/publish/css/content.css b/src/main/webapp/visitEdu/usr/publish/css/content.css index 3414b4b6..0788dd7e 100644 --- a/src/main/webapp/visitEdu/usr/publish/css/content.css +++ b/src/main/webapp/visitEdu/usr/publish/css/content.css @@ -358,23 +358,11 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa .tb_list02 table .btnType04 {border-radius:5px; padding:5px 10px; font-size:15px;} .tb_list02 table .btnType06 {border-radius:5px; padding:5px 10px; font-size:15px;} - /*체험교실대시보드*/ -.ex_process {display:flex; justify-content:space-between; background:#f5f5f5; border:1px solid #cbcbcb; width:100%; border-radius:10px; margin: 0 0 40px 0; } -.ex_process li {position:relative; background-position:25 center; background-repeat: no-repeat; width:20%; color:#666; font-size:22px; font-weight:500; letter-spacing:-0.5; } -.ex_process li a {width:100%; padding:0; box-sizing: border-box; padding:45px 0 45px 125px ;} -.ex_process li.p_1 {background-image: url(../images/content/ex_process1.png); background-position:50px center;} -.ex_process li.p_2 {background-image: url(../images/content/ex_process2.png); background-position:50px center;} -.ex_process li.p_3 {background-image: url(../images/content/ex_process3.png); background-position:50px center;} -.ex_process li.p_4 {background-image: url(../images/content/ex_process4.png); background-position:50px center;} -.ex_process li.p_5 {background-image: url(../images/content/ex_process5.png); background-position:50px center;} -.ex_process li.p_1_on {background-image: url(../images/content/ex_process1_on.png); background-position:50px center; background-color:#f37632; border-radius:10px; color:#fff; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);} -.ex_process li.p_2_on {background-image: url(../images/content/ex_process2_on.png); background-position:50px center; background-color:#f37632; border-radius:10px; color:#fff; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);} -.ex_process li.p_3_on {background-image: url(../images/content/ex_process3_on.png); background-position:50px center; background-color:#f37632; border-radius:10px; color:#fff; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);} -.ex_process li.p_4_on {background-image: url(../images/content/ex_process4_on.png); background-position:50px center; background-color:#f37632; border-radius:10px; color:#fff; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);} -.ex_process li.p_5_on {background-image: url(../images/content/ex_process5_on.png); background-position:50px center; background-color:#f37632; border-radius:10px; color:#fff; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);} -.ex_process li::after {position:absolute; content:""; width:1px; height:60px; background-color: #d5d5d5; right: 0; align-items: center; margin:-85px 0 0 0;} -.ex_process li.p_1_on::after, li.p_2_on::after, li.p_3_on::after, li.p_4_on::after, li.p_5::after, li.p_5_on::after {display:none; } +.ex_process {display:flex; justify-content:space-between;} +.ex_process li {border-radius: 10px; width:13.5%; text-align: center; color:#fff; padding:15px 0 18px 0; font-size:22px;} +.ex_process li.p {background-color: #a7acb6;} +.ex_process li.p_on {background-color:#f37632;} /* 첨부파일 */ .tb_type01.attach {margin-bottom: 10px;} @@ -812,22 +800,7 @@ select.selType1 {height: 40px; border: 1px solid #d5d5d5; border-radius: 5px; pa .sel_tpye {margin: 100px 120px 24px 120px;} /*체험교실대시보드*/ - .ex_process {background:#f5f5f5; border:1px solid #cbcbcb; width:100%; border-radius:10px; margin: 0; margin:0 0 30px 0; } - .ex_process li {position:relative; background-position:25 center; background-repeat: no-repeat; width:20%; color:#666; font-size:17px; letter-spacing: -1px; font-weight:500;} - .ex_process li a { padding:20px 0; text-align:center;} - .ex_process li.p_1_on {background-image: none;} - .ex_process li.p_2_on {background-image: none;} - .ex_process li.p_3_on {background-image: none;} - .ex_process li.p_4_on {background-image: none;} - .ex_process li.p_5_on {background-image: none;} - .ex_process li.p_1 {background-image: none;} - .ex_process li.p_2 {background-image: none;} - .ex_process li.p_3 {background-image: none;} - .ex_process li.p_4 {background-image: none;} - .ex_process li.p_5 {background-image: none;} - .ex_process li::after {position:absolute; content:""; width:1px; height:30px; background-color: #d5d5d5; right: 0; margin:-45px 0 0 0;} - .ex_process li.p_1_on::after, li.p_2_on::after, li.p_3_on::after, li.p_4_on::after, li.p_5_on::after {display:none; } - + .ex_process li {font-size:18px; padding:8px 3px 10px 3px; border-radius:5px; width:12%; line-height:20px; display: flex; align-items: center; justify-content: center;} } diff --git a/src/main/webapp/visitEdu/usr/publish/sub_ex_dashboard.html b/src/main/webapp/visitEdu/usr/publish/sub_ex_dashboard.html index bdfe1d30..35108b6c 100644 --- a/src/main/webapp/visitEdu/usr/publish/sub_ex_dashboard.html +++ b/src/main/webapp/visitEdu/usr/publish/sub_ex_dashboard.html @@ -529,13 +529,15 @@
- +
  • 운영 신청
  • +
  • 운영 확정
  • +
  • 서류 제출
  • +
  • 운영 진행중
  • +
  • 결과 보고
  • +
  • 검토중
  • +
  • 운영 종료
  • + +