refactor:과서사건관리 하단 버튼 노출 조건 수정
This commit is contained in:
parent
6f5bfc669f
commit
c18cc93d48
@ -1396,10 +1396,10 @@ function fn_goListPage(){
|
||||
|
||||
<!-- btn_wrap -->
|
||||
<div class="btn_wrap btn_layout01">
|
||||
<div class="area_left" style="width:350px;">
|
||||
<button type="button" class="btnType06 progReg">차수등록</button>
|
||||
<button type="button" class="btnType06 fileReg">파일등록</button>
|
||||
<button type="button" class="btnType06 recordReg">이력등록</button>
|
||||
<div class="area_left" style="width:800px;">
|
||||
<button type="button" class="btnType03 popBtn" id="progReg">기일조서관리</button>
|
||||
<button type="button" class="btnType03 popBtn" id="fileReg">사건관련문서</button>
|
||||
<button type="button" class="btnType03 popBtn" id="recordReg">사건진행정보</button>
|
||||
|
||||
</div>
|
||||
<div class="area_right">
|
||||
|
||||
@ -251,7 +251,7 @@ function fn_goListPage(){
|
||||
</div>
|
||||
<div class="area_right">
|
||||
<!-- <button type="button" id="goPage" class="btnType06">다음단계 이동 ></button> -->
|
||||
<button class="btnType04" onclick="window.close(); return false;">닫기</button>
|
||||
<button class="btnType06" onclick="window.close(); return false;">저장</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //하단 버튼 -->
|
||||
|
||||
@ -85,7 +85,7 @@ function fn_goListPage(){
|
||||
|
||||
|
||||
</script>
|
||||
<title>사건진행정보</title>
|
||||
<title>기일조서관리</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@ -188,7 +188,7 @@ function fn_goListPage(){
|
||||
<div class="area_right">
|
||||
<!-- <button type="button" id="goPage" class="btnType06">다음단계 이동 ></button> -->
|
||||
<!-- <button class="btnType04" onclick="fn_goListPage(); return false;">목록</button> -->
|
||||
<button class="btnType04" onclick="window.close(); return false;">닫기</button>
|
||||
<button class="btnType06" onclick="window.close(); return false;">저장</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //page -->
|
||||
|
||||
@ -33,15 +33,15 @@ function openExampleAdminPop(exmpCd) {
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
$('.progReg').on('click', function(){
|
||||
$('#progReg').on('click', function(){
|
||||
commonPopWindowopenForm("/kccadr/adjReqMgOff/popup/adjReqMgrPastProgRegist.do", '820', '600', "adjReqMgrPastProgRegist", $('#nextGoPageForm'));
|
||||
});
|
||||
|
||||
$('.fileReg').on('click', function(){
|
||||
$('#fileReg').on('click', function(){
|
||||
commonPopWindowopenForm("/kccadr/adjReqMgOff/popup/adjReqMgrPastFileRegist.do", '1250', '600', "adjReqMgrPastFileRegist", $('#nextGoPageForm'));
|
||||
});
|
||||
|
||||
$('.recordReg').on('click', function(){
|
||||
$('#recordReg').on('click', function(){
|
||||
commonPopWindowopenForm("/kccadr/adjReqMgOff/popup/adjReqMgrPastRecordRegist.do", '1250', '600', "adjReqMgrPastRecordRegist", $('#nextGoPageForm'));
|
||||
});
|
||||
|
||||
|
||||
@ -2,7 +2,11 @@
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
|
||||
|
||||
if($('#adrSeq').val() == '')
|
||||
{
|
||||
$(".popBtn").hide();
|
||||
}
|
||||
|
||||
/* 최종결과 선택에 따른 액션 */
|
||||
$('#detailResult').hide();
|
||||
|
||||
@ -1118,15 +1118,17 @@
|
||||
alert(data.data);
|
||||
if(data.status == 'OK')
|
||||
{
|
||||
if($('#adrSeqHidden').val() == null)
|
||||
if($('#adrSeqHidden').val() == '')
|
||||
{
|
||||
$('#adrSeqHidden').val(data.dataSub);
|
||||
}
|
||||
if($('#adrSeq').val() == null)
|
||||
if($('#adrSeq').val() == '')
|
||||
{
|
||||
$(".popBtn").show();
|
||||
$('#adrSeq').val(data.dataSub);
|
||||
}
|
||||
|
||||
|
||||
$(".popBtn").show();
|
||||
|
||||
// $('#nextGoPageForm').submit();
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user