no message

main
이범준 3 months ago
parent 43821691fb
commit 22a87cd985

@ -409,7 +409,7 @@ $(document).ready(function(){
var $P = pageObject["${pageName}"]; var $P = pageObject["${pageName}"];
$("#photoMainWrapper--${pageName}").addClass("w-px-550 min-w-px-550"); $P.$find("photoMainWrapper").addClass("w-px-550 min-w-px-550");
if(pageObject.parentRes.length > 0){ if(pageObject.parentRes.length > 0){
$P.provided = pageObject.parentRes.pop(); $P.provided = pageObject.parentRes.pop();
@ -1128,9 +1128,9 @@ $(document).ready(function(){
if("${taskSeCd}" == "DPV"){ if("${taskSeCd}" == "DPV"){
$P.$find("vltnCd").on("change", function(){ $P.$find("vltnCd").on("change", function(){
if(this.value == "01"){ if(this.value == "01"){
$("label[for='dstrbncYn--${pageName}']").show(); $P.$find("dstrbncYn").show();
} else { } else {
$("label[for='dstrbncYn--${pageName}']").hide(); $P.$find("dstrbncYn").hide();
$P.$find("dstrbncYn").prop("checked", false); $P.$find("dstrbncYn").prop("checked", false);
} }
}); });
@ -1177,9 +1177,9 @@ $(document).ready(function(){
$P.ctrl.dataset.setData([crdnInfo]); $P.ctrl.dataset.setData([crdnInfo]);
if($P.$find("taskSeCd").val() == "DPV" && $P.$find("vltnCd").val() == "01"){ if($P.$find("taskSeCd").val() == "DPV" && $P.$find("vltnCd").val() == "01"){
$("label[for='dstrbncYn--${pageName}']").show(); $P.$find("dstrbncYn").show();
} else { } else {
$("label[for='dstrbncYn--${pageName}']").hide(); $P.$find("dstrbncYn").hide();
} }
//보안모드 //보안모드

@ -401,7 +401,7 @@ $(document).ready(function(){
content : $P.find("seallDmndDialogTemplate").innerHTML, content : $P.find("seallDmndDialogTemplate").innerHTML,
size : "lg", size : "lg",
init : () => { init : () => {
initDatepicker("seallDmndDialog--${pageName}"); initDatepicker(document.getElementById("seallDmndDialog--${pageName}"));
$("#seallDmndDialog--${pageName}").find("[name='rcptYmd']").datepicker('setDate', TODAY()); $("#seallDmndDialog--${pageName}").find("[name='rcptYmd']").datepicker('setDate', TODAY());
$("#seallDmndDialog--${pageName}").find("[name='btnCreate']").on("click", () => $P.fnCreateDmnd()); $("#seallDmndDialog--${pageName}").find("[name='btnCreate']").on("click", () => $P.fnCreateDmnd());
}, },

@ -1,6 +1,6 @@
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%> <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> <%@ include file="/WEB-INF/jsp/include/taglib.jsp"%>
<div class="card" id="photoMainWrapper--${pageName}"> <div class="card" id="photoMainWrapper--${pageName}" name="photoMainWrapper">
<form id="frmFile--${pageName}" method="post" enctype="multipart/form-data"> <form id="frmFile--${pageName}" method="post" enctype="multipart/form-data">
<input type="file" id="newFileList--${pageName}" name="newFileList" <input type="file" id="newFileList--${pageName}" name="newFileList"
multiple accept="image/*" hidden /> multiple accept="image/*" hidden />

Loading…
Cancel
Save