2023-07-10 12:44 관리자 메일 발송 테스트 미리보기

This commit is contained in:
myname 2023-07-10 12:44:46 +09:00
parent fc72f53f5d
commit 0591969882
2 changed files with 181 additions and 1 deletions

View File

@ -162,7 +162,7 @@
<tr>
<th scope="row"><p>메일 샘플 코드</p> </th>
<td>
<c:out value='${cntManageVO.cntCn}' escapeXml="true" />
<c:out value='${cntManageVO.cntCn}' escapeXml="false" />
</td>
</tr>
<tr>

View File

@ -0,0 +1,180 @@
<%--
Class Name : FmsFileModify.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="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<c:set var="ImgUrl" value="${pageContext.request.contextPath}/images/egovframework/com/cmm/" />
<c:set var="CssUrl" value="${pageContext.request.contextPath}/css/egovframework/com/" />
<c:set var="JsUrl" value="${pageContext.request.contextPath}/js/egovframework/com/uss/ion/pwm/"/>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>팝업창관리 관리</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javascript" src="<c:url value='/js/EgovMultiFile.js'/>"></script>
<script type="text/javaScript" language="javascript">
$( document ).ready(function(){
});
/* pagination 페이지 링크 function */
function goList(){
//document.searchForm.submit();
location.href = "/sym/log/clg/SelectLogMethodList.do";
}
/* 등록시 값 확인 */
function fn_checkForm() {
frm = document.writeForm;
if(frm.menuNm.value.trim()=="") {
alert("메뉴명을 입력해 주십시오");
frm.menuNm.focus();
return false;
}
if(frm.methodNm.value.trim()=="") {
alert("메소드명을 입력해 주십시오");
frm.methodNm.focus();
return false;
}
if(frm.param.value.trim()=="") {
alert("파라미터를 입력해 주십시오");
frm.param.focus();
return false;
}
if(frm.approNm.value.trim()=="") {
alert("기능명을 입력해 주십시오");
frm.approNm.focus();
return false;
}
return true;
}
/* 글 등록 function */
function fn_insert() {
if(fn_checkForm()){
frm = document.writeForm;
frm.action = "<c:url value='/sym/log/clg/InsertLogMethod.do'/>";
frm.submit();
}
}
/* 글 등록 function */
function fn_update() {
frm = document.writeForm;
frm.action = "<c:url value='/sym/log/clg/UpdateLogMethod.do'/>";
if(fn_checkForm(1)){
frm.submit();
}
}
/* 삭제 function */
function fn_delete() {
var msg;
msg = "해당 첨부파일을 삭제하시겠습니까?";
if (confirm(msg)) {
frm = document.writeForm;
frm.action = "<c:url value='/sym/log/clg/DeleteLogMethod.do'/>";
frm.submit();
}
}
</script>
<style>
.del_file_btn{border: none;background-color: transparent;background-image: url(/direct/img/upload_delect_img.png);background-repeat: no-repeat;background-position: center center;vertical-align: middle;margin-top: -4px;margin-right: 15px;}
.file_size{color: #0388d2;font-weight: bold;}
.uploaded_obj{width: 100%;}
</style>
</head>
<body>
<form name="writeForm" method="post">
<input type="hidden" name="del" value="${loginLog.admotId}" />
<input type="hidden" name="admotId" value="${loginLog.admotId}" />
<div class="contWrap">
<div class="pageTitle">
<div class="pageIcon"><img src="/pb/img/pageTitIcon4.png" alt=""></div>
<h2 class="titType1 c_222222 fwBold">관리자로그설정관리</h2>
<p class="tType6 c_999999">관리자 로그 설정을 관리 합니다.</p>
</div>
<div class="pageCont">
<div class="listTop resisterList">
<p class="right block fwMd"><span class="tType4 c_e40000 fwBold">*</span>는 필수입력 항목입니다.</p>
</div>
<table class="tbType2">
<colgroup>
<col style="width: 20%">
<col style="width: 80%">
</colgroup>
<tbody>
<tr>
<th><span class="reqArea">메뉴명</span></th>
<td colspan="3">
<input type="text" size="50" name="menuNm" value="${loginLog.menuNm}" title="menuNm" maxlength="100" />
</td>
</tr>
<tr>
<th><span class="reqArea">메소드명</span></th>
<td colspan="3">
<input type="text" size="50" name="methodNm" value="${loginLog.methodNm}" title="methodNm" maxlength="100" />
</td>
</tr>
<tr>
<th><span class="reqArea">파라미터</span></th>
<td colspan="3">
<input type="text" size="50" name="param" value="${empty loginLog.admotId ? 'N' : loginLog.param }" title="param" maxlength="100" />
<br><span class="cfText">*기본값은 N 입니다.</span>
<br><span class="cfText c_ed4555">*N이 아닌 값을 사용할 경우는 url에 'logParam=파라미터값' 형식을 추가해야 적용됩니다.</span>
</td>
</tr>
<tr>
<th><span class="reqArea">기능명</span></th>
<td colspan="3">
<input name="approNm" value="${loginLog.approNm}" title="approNm" maxlength="100" />
</td>
</tr>
<c:if test="${!empty loginLog.admotId }">
<tr>
<th><span class="reqArea">등록일자</span></th>
<td colspan="3">
<input name="creatDt" value="${loginLog.creatDt}" title="creatDt" maxlength="100" readonly />
</td>
</tr>
</c:if>
</tbody>
</table>
<div class="btnWrap">
<input type="button" class="btnType1 bg_888888" value="목 록" onclick="goList(); return false;">
<c:if test="${!empty loginLog.admotId }">
<input type="button" class="btnType1" value="삭 제" onclick="fn_delete(); return false;">
<input type="button" class="btnType1" value="수 정" onclick="fn_update(); return false;">
</c:if>
<c:if test="${empty loginLog.admotId }">
<input type="button" class="btnType1" value="저 장" onclick="fn_insert(); return false;">
</c:if>
</div>
</div>
</div>
</form>
</body>
</html>