parent
74e8082eba
commit
2f5430e0a8
@ -0,0 +1,182 @@
|
|||||||
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%>
|
||||||
|
<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%>
|
||||||
|
|
||||||
|
<!-- inner page html -->
|
||||||
|
<div class="content-wrapper">
|
||||||
|
<!-- Content -->
|
||||||
|
<div class="container flex-grow-1 px-0">
|
||||||
|
<c:set var="prefixName" scope="request">의견제출 심의 정보</c:set>
|
||||||
|
|
||||||
|
<!-- Page Body -->
|
||||||
|
<div class="card">
|
||||||
|
<!-- 입력 영역 -->
|
||||||
|
<form id="frmEdit--${pageName}" name="frmEdit">
|
||||||
|
<!-- hidden -->
|
||||||
|
<input type="hidden" id="sggCd--${pageName}" name="sggCd" data-map="SGG_CD" />
|
||||||
|
<input type="hidden" id="taskSeCd--${pageName}" name="taskSeCd" data-map="TASK_SE_CD" />
|
||||||
|
<input type="hidden" id="gdccId--${pageName}" name="gdccId" data-map="GDCC_ID" />
|
||||||
|
|
||||||
|
<div class="row g-1">
|
||||||
|
<!-- 발송 구분 코드 -->
|
||||||
|
<div class="col-md-12">
|
||||||
|
<label for="sndngSeCd--${pageName}" class="w-px-100 bg-lighter pe-2 col-form-label text-sm-end required">발송구분</label>
|
||||||
|
<select class="form-select" id="sndngSeCd--${pageName}" name="sndngSeCd" data-map="SNDNG_SE_CD" required>
|
||||||
|
<option value="">선택하세요</option>
|
||||||
|
<c:forEach items="${FIM047List}" var="item">
|
||||||
|
<option value="${item.code}">${item.value}</option>
|
||||||
|
</c:forEach>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<!-- 제목 명 -->
|
||||||
|
<div class="col-md-12">
|
||||||
|
<label for="ttlNm--${pageName}" class="w-px-100 bg-lighter pe-2 col-form-label text-sm-end required">제목</label>
|
||||||
|
<input type="text" class="form-control w-75" id="ttlNm--${pageName}" name="ttlNm" data-map="TTL_NM" required autocomplete="off" />
|
||||||
|
</div>
|
||||||
|
<!-- 문구 내용 -->
|
||||||
|
<div class="col-md-12">
|
||||||
|
<label for="wordsCn--${pageName}" class="w-px-100 bg-lighter pe-2 col-form-label text-sm-end">문구내용</label>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12">
|
||||||
|
<textarea class="form-control w-100" id="wordsCn--${pageName}" name="wordsCn" data-map="WORDS_CN" rows="15" data-maxlengthb="4000" autocomplete="off"></textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form> <!-- /입력 영역 -->
|
||||||
|
</div> <!-- <div class="card"> -->
|
||||||
|
|
||||||
|
<!-- 업무 버튼 표시 -->
|
||||||
|
<div>
|
||||||
|
<span class="container-page-btn">
|
||||||
|
<span class="container-window-btn-right">
|
||||||
|
<!-- 업무 버튼 -->
|
||||||
|
<button type="button" class="btn btn-primary w-px-80" id="btnSave--${pageName}" title="저장" onclick="fnSave${pageName}()">저장</button>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<!-- / 업무 버튼 표시 -->
|
||||||
|
|
||||||
|
</div> <!-- / Content <div class="container flex-grow-1 px-0"> -->
|
||||||
|
</div> <!-- / inner page html <div class="content-wrapper"> -->
|
||||||
|
|
||||||
|
<script>
|
||||||
|
/**************************************************************************
|
||||||
|
* Global Variable
|
||||||
|
**************************************************************************/
|
||||||
|
// URL
|
||||||
|
var ${pageName}PrefixUrl = "/epst/epst02";
|
||||||
|
// FormFields
|
||||||
|
var ${pageName}Fields = new FimsFormFields("#frmEdit--${pageName}");
|
||||||
|
// infoDialog 호출 용도(view 조회(편집불가), create 등록, update 수정)
|
||||||
|
var ${pageName}CallPurpose = "${callPurpose}";
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* DatasetControl
|
||||||
|
**************************************************************************/
|
||||||
|
var ${pageName}Control = new DatasetControl({
|
||||||
|
prefix : "epostGdcc"
|
||||||
|
, prefixName : "전자우편 안내문 정보"
|
||||||
|
, keymapper : info => info ? info.GDCC_ID : ""
|
||||||
|
, dataGetter : obj => obj.epostGdccInfo
|
||||||
|
});
|
||||||
|
|
||||||
|
${pageName}Control.onCurrentChange = item => {
|
||||||
|
if (!item) return;
|
||||||
|
|
||||||
|
// Dataset 셋팅
|
||||||
|
${pageName}Fields.set(item);
|
||||||
|
|
||||||
|
// 업무구분에 따른 url 변경
|
||||||
|
${pageName}Control.urls.create = wctx.url(item.data.TASK_SE_CD + ${pageName}PrefixUrl + "/020/create.do");
|
||||||
|
${pageName}Control.urls.update = wctx.url(item.data.TASK_SE_CD + ${pageName}PrefixUrl + "/020/update.do");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* DatasetControl 이벤트
|
||||||
|
**************************************************************************/
|
||||||
|
// 저장 callback
|
||||||
|
${pageName}Control.onSave = (resp) => {
|
||||||
|
let dialogTitle = $("#" + ${pageName}Control.prefix + "Dialog").find("h5.modal-title").html();
|
||||||
|
let showMessage = resp.retMessage.replace(/[S]|[F]/g, dialogTitle);
|
||||||
|
|
||||||
|
dialog.alert(showMessage);
|
||||||
|
|
||||||
|
if (resp.saved) {
|
||||||
|
dialog.close(${pageName}Control.prefix + "Dialog");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 저장
|
||||||
|
${pageName}Control.save = (info) => {
|
||||||
|
if (!info) return;
|
||||||
|
|
||||||
|
let create = (${pageName}CallPurpose == "create"); // if 문
|
||||||
|
|
||||||
|
ajax.post({
|
||||||
|
url : !create ? ${pageName}Control.urls.update : ${pageName}Control.urls.create
|
||||||
|
, data : info
|
||||||
|
, success : resp => ${pageName}Control.onSave(resp)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* 초기 셋팅
|
||||||
|
**************************************************************************/
|
||||||
|
// 이벤트 설정
|
||||||
|
setEvent${pageName} = () => {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// 초기 화면 설정
|
||||||
|
initForm${pageName} = () => {
|
||||||
|
// 달력 초기화
|
||||||
|
initDatepicker("frmEdit--${pageName}");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 초기 데이터 설정
|
||||||
|
setForm${pageName} = () => {
|
||||||
|
$("#sndngSeCd--${pageName}").attr("disabled", true);
|
||||||
|
$("#ttlNm--${pageName}").attr("disabled", true);
|
||||||
|
$("#wordsCn--${pageName}").attr("disabled", true);
|
||||||
|
$("#btnSave--${pageName}").attr("disabled", true);
|
||||||
|
|
||||||
|
if (${pageName}CallPurpose != "view") {
|
||||||
|
$("#sndngSeCd--${pageName}").attr("disabled", false);
|
||||||
|
$("#ttlNm--${pageName}").attr("disabled", false);
|
||||||
|
$("#wordsCn--${pageName}").attr("disabled", false);
|
||||||
|
$("#btnSave--${pageName}").attr("disabled", false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* function
|
||||||
|
**************************************************************************/
|
||||||
|
// 저장
|
||||||
|
fnSave${pageName} = () => {
|
||||||
|
// validate 확인
|
||||||
|
if (!customValidate($("#frmEdit--${pageName}").find("input, select, textarea"))) return;
|
||||||
|
|
||||||
|
dialog.alert({
|
||||||
|
content : "현재 " + ${pageName}Control.prefixName + " 정보를 저장하시겠습니까?"
|
||||||
|
, onOK : () => {
|
||||||
|
${pageName}Control.save(${pageName}Fields.get());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* script 진입
|
||||||
|
**************************************************************************/
|
||||||
|
$(document).ready(function() {
|
||||||
|
// 이벤트 설정
|
||||||
|
setEvent${pageName}();
|
||||||
|
|
||||||
|
// 화면 초기화
|
||||||
|
initForm${pageName}();
|
||||||
|
|
||||||
|
// Dataset 셋팅 - 단건일 경우 setData
|
||||||
|
${pageName}Control.setData([${epostGdccInfo}]);
|
||||||
|
|
||||||
|
// 화면 데이터 셋팅
|
||||||
|
setForm${pageName}();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
Loading…
Reference in New Issue