- |
+ |
수령주소
|
@@ -178,7 +178,7 @@
- |
+ |
예약일시
|
@@ -193,7 +193,7 @@
|
- |
+ |
서류종류
|
@@ -201,7 +201,7 @@
|
- |
+ |
발급부수
|
@@ -209,7 +209,7 @@
|
- |
+ |
요청내용
|
@@ -217,7 +217,7 @@
|
- 발급상태 |
+ 발급상태 |
diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ars/tab/docIssReqRegist.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ars/tab/docIssReqRegist.jsp
index 558a4022..06764281 100644
--- a/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ars/tab/docIssReqRegist.jsp
+++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ars/tab/docIssReqRegist.jsp
@@ -44,6 +44,10 @@
// 방문 20
classify();
});
+
+ setTimeout(function(){
+ boardCaptionToggle02();
+ },100)
});
@@ -60,6 +64,9 @@
$(".tr_visit").show();
$(".tr_post").hide();
}
+ setTimeout(function(){
+ boardCaptionToggle02();
+ },100)
}
function valueChk(){
diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReqRegistInformation.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReqRegistInformation.jsp
index 8207efcc..b0ac2d51 100644
--- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReqRegistInformation.jsp
+++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReqRegistInformation.jsp
@@ -79,7 +79,7 @@ function tutorialPop(){
|
diff --git a/src/main/webapp/kccadrPb/usr/css/content.css b/src/main/webapp/kccadrPb/usr/css/content.css
index 2ec59354..f656d6a5 100644
--- a/src/main/webapp/kccadrPb/usr/css/content.css
+++ b/src/main/webapp/kccadrPb/usr/css/content.css
@@ -433,7 +433,8 @@ table .label{position: absolute;width: 1px; height: 1px; margin: 0; border: none
.sub02_1 .choice_person ul li:hover input[type=radio] + label,
.sub02_1 .choice_person ul li input[type=radio]:checked + label {color:#fff;border-color:#2353b5;background-color:#2353b5;box-shadow: 0 0 5px rgba(0,0,0,0.3);}
.sub02_1 .choice_person ul li:hover input[type=radio] + label .sub_te,
-.sub02_1 .choice_person ul li input[type=radio]:checked + label .sub_te{color:#fff !important;}
+.sub02_1 .choice_person ul li input[type=radio]:checked + label .sub_te,.sub02_1 .choice_person ul li:hover input[type=radio] + label p,
+.sub02_1 .choice_person ul li input[type=radio]:checked + label p{color:#fff !important;transition:all 0.3s ease-in-out;}
.step_wrap{display: flex; width: 100%; margin-bottom: 50px;}
diff --git a/src/main/webapp/kccadrPb/usr/script/content_custom.js b/src/main/webapp/kccadrPb/usr/script/content_custom.js
index 0473baef..e4e0d5da 100644
--- a/src/main/webapp/kccadrPb/usr/script/content_custom.js
+++ b/src/main/webapp/kccadrPb/usr/script/content_custom.js
@@ -283,8 +283,8 @@ function boardCaptionToggle02(){
var subTit = $(".cont_tit h2").text();
var itmText = "";
$(".tbType01").each(function(idx,tb){
- var thLength = $(tb).find("tbody>tr>th").length;
- $(tb).find("tbody>tr>th").each(function(index,item){
+ var thLength = $(tb).find("tbody>tr>th:visible").length;
+ $(tb).find("tbody>tr>th:visible").each(function(index,item){
itmText += $(item).text();
if (index === thLength - 1) {
//마지막 th일 경우 - ,가 들어가면 안됨.
diff --git a/src/main/webapp/kccadrPb/usr/script/popup.js b/src/main/webapp/kccadrPb/usr/script/popup.js
index 244ae348..62cbe280 100644
--- a/src/main/webapp/kccadrPb/usr/script/popup.js
+++ b/src/main/webapp/kccadrPb/usr/script/popup.js
@@ -92,6 +92,13 @@ $(document).ready(function () {
$('.popup_tab_wrap .tab_ul .tab_li,.glossary_left_area ul li').on('click',function(){
$(this).addClass('on').siblings().removeClass('on');
});
+
+ $(".btn_form_download").click(function(){
+ setTimeout(function(){
+ popupboardCaptionToggle();
+ },100);
+ })
+
});
function popupboardCaptionToggle(){
|