2023/10/11 조정신청 3단계 신청이유, 신청취지 팝업 수정
This commit is contained in:
parent
171645c2b5
commit
8787b892c4
@ -46,6 +46,7 @@
|
||||
}
|
||||
</style>
|
||||
<%-- <un:useConstants var="KccadrConstants" className="kcc.kccadr.cmm.KccadrConstants" /> --%>
|
||||
<script src="/tabulator/jquery-ui-1.13.2.custom/jquery-ui.min.js"/>
|
||||
<script type="text/javaScript" language="javascript">
|
||||
|
||||
$( document ).ready(function(){
|
||||
|
||||
@ -12,7 +12,7 @@
|
||||
<head>
|
||||
<title>조정신청 예문보기</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<script type="text/javascript" src="/kccadrPb/usr/script/popup.js"></script>
|
||||
<!-- <script type="text/javascript" src="/kccadrPb/usr/script/popup.js"></script> -->
|
||||
<script type="text/javaScript" language="javascript">
|
||||
$(document).ready(function(){
|
||||
$('.work_flow_wrap').each(function(){
|
||||
@ -28,9 +28,12 @@ $(document).ready(function(){
|
||||
});
|
||||
$(".tooltip-close").click(function(){
|
||||
var activeTarget = $('[data-tooltip-con="fee_info_popup"]');
|
||||
activeTarget.hide();
|
||||
activeTarget.remove();
|
||||
$('[data-tooltip="fee_info_popup"]').eq(0).focus();
|
||||
$(".mask").hide();
|
||||
});
|
||||
/* $(".popup_wrap").css("position","absolute"); */
|
||||
$(".popup_wrap").draggable();
|
||||
});
|
||||
|
||||
// 신청취지 텍스트에 추가
|
||||
|
||||
@ -15,20 +15,19 @@
|
||||
<script type="text/javascript" src="/kccadrPb/usr/script/popup.js"></script>
|
||||
<script type="text/javaScript" language="javascript">
|
||||
$(document).ready(function(){
|
||||
|
||||
// 레이어팝업 포커싱 이동 수정
|
||||
var popupTit = $(".cont_tit03").text();
|
||||
|
||||
if(popupTit.trim() == "* 신청취지"){
|
||||
$(".tooltip-close").click(function(){
|
||||
var activeTarget = $('[data-tooltip-con="fee_info_popup"]');
|
||||
activeTarget.hide();
|
||||
activeTarget.remove();
|
||||
$('[data-tooltip="fee_info_popup"]').eq(0).focus();
|
||||
});
|
||||
}else{
|
||||
$(".tooltip-close").click(function(){
|
||||
var activeTarget = $('[data-tooltip-con="fee_info_popup"]');
|
||||
activeTarget.hide();
|
||||
activeTarget.remove();
|
||||
$('[data-tooltip="fee_info_popup"]').eq(1).focus();
|
||||
});
|
||||
}
|
||||
@ -43,11 +42,13 @@ $(document).ready(function(){
|
||||
console.log('perId : ', perId);
|
||||
$(perId).val($('#exmpCn').text().trim());
|
||||
});
|
||||
|
||||
$(".popup_wrap").draggable();
|
||||
})
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="popup_wrap fee_info_popup" style="max-width: 580px;" tabindex="0" data-tooltip-con="fee_info_popup" data-focus="fee_info_popup" data-focus-prev="fee_info_popup_close">
|
||||
<div class="popup_wrap fee_info_popup" style="max-width: 880px;" tabindex="0" data-tooltip-con="fee_info_popup" data-focus="fee_info_popup" data-focus-prev="fee_info_popup_close">
|
||||
<input type="hidden" id="exmpCd" name="exmpCd" value="${exmp.exmpCd }"/>
|
||||
<div class="popup_tit">
|
||||
<p>조정신청 예문</p> <button class="btn_popup_close tooltip-close" data-focus="fee_info_popup_close" title="팝업 닫기"><i></i></button>
|
||||
|
||||
@ -1391,22 +1391,32 @@ var AdjstReq = {
|
||||
- 04 : 답변서
|
||||
- 05 : 사건진행도움말
|
||||
*/
|
||||
var uri = '';
|
||||
if(exmpCd == '01' || exmpCd == '04')
|
||||
var uri,wid,hei = '';
|
||||
if(exmpCd == '01')
|
||||
{
|
||||
uri = "adjstReqOpenExamplePop.do";
|
||||
wid = "580";
|
||||
hei = "476";
|
||||
}
|
||||
else if (exmpCd == '02')
|
||||
{
|
||||
uri = "adjstReqOpenExamplePop2.do";
|
||||
wid = "880";
|
||||
hei = "676";
|
||||
}
|
||||
else if(exmpCd == '04'){
|
||||
uri = "adjstReqOpenExamplePop.do";
|
||||
wid = "580";
|
||||
hei = "600";
|
||||
}
|
||||
|
||||
|
||||
commonPopLayeropen(
|
||||
"/web/kccadr/adjst/popup/"+uri
|
||||
, 1100
|
||||
, 600
|
||||
, wid
|
||||
, hei
|
||||
, {ccTy : $("#ccTy").val(), exmpCd : exmpCd}
|
||||
, "N"
|
||||
, "Y"
|
||||
, "openExamplePop"
|
||||
);
|
||||
},
|
||||
|
||||
@ -289,7 +289,7 @@ function commonPopLayeropen(url, popupwidth, popupheight, paramObj, maskYn, targ
|
||||
parentDiv.show();
|
||||
innerTarget.show().focus();
|
||||
|
||||
parentDiv.find("[data-focus=list_popup_close]").off().click(function(e) {
|
||||
parentDiv.find("[data-focus=list_popup_close], .tooltip-close").off().click(function(e) {
|
||||
$("#" + target).remove();
|
||||
$("#" + maskId).remove();
|
||||
});
|
||||
|
||||
@ -40,8 +40,8 @@ function tooltip() {
|
||||
var popWid = showTarget.width();
|
||||
var popHei = showTarget.height();
|
||||
|
||||
var nLeft = (($(window).width() - popWid)/2);
|
||||
var nTop = (($(window).height() - popHei)/2);
|
||||
var nLeft = (($(window).outerWidth() - popWid)/2);
|
||||
var nTop = (($(window).outerHeight() - popHei)/2);
|
||||
|
||||
showTarget.css({
|
||||
"left": nLeft,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user