선거문자 즉시발송/예약하기 버튼 클릭 시 위아래로 움직이는 오류 수정

This commit is contained in:
subsub 2023-12-26 12:29:58 +09:00
parent 7c713e230a
commit b8e1df0648

View File

@ -11,6 +11,13 @@
<!-- --> <!-- -->
<script type="text/javascript" src="<c:url value='/publish/js/publish.js'/>"></script> <script type="text/javascript" src="<c:url value='/publish/js/publish.js'/>"></script>
<style>
/* .send_top .send_right .phone_bottom{display:flex;align-items:center;} */
.send_top .send_right .send_rev{margin:0;}
.send_top .send_right .phone_bottom{bottom:130px;}
.send_top .send_right .send_rev .send_content{padding:0;}
</style>
<% pageContext.setAttribute("newLineChar", "\r\n"); %> <% pageContext.setAttribute("newLineChar", "\r\n"); %>
<script type="text/javascript"> <script type="text/javascript">
var tableErrorData = []; var tableErrorData = [];
@ -1829,14 +1836,16 @@ $(document).ready(function (){
//즉시 발송 라디오 버튼 선택시 숨김처리 //즉시 발송 라디오 버튼 선택시 숨김처리
$("#reserYnN").on('click', function(){ $("#reserYnN").on('click', function(){
$('.rev_selected').hide(); $('.rev_selected').hide();
$('.send_rev .send_content').css('padding-bottom','108px'); //$('.send_rev .send_content').css('padding-bottom','108px');
$(".send_top .send_right .phone_bottom").css("bottom","130px");
$('.send_btn .btnType:first-child').html('발송하기'); $('.send_btn .btnType:first-child').html('발송하기');
}); });
//예약 발송 라디오 버튼 선택시 숨김 해제처리 //예약 발송 라디오 버튼 선택시 숨김 해제처리
$("#reserYnY").on('click', function(){ $("#reserYnY").on('click', function(){
$('.rev_selected').show(); $('.rev_selected').show();
$('.send_rev .send_content').css('padding-bottom','0'); /* $('.send_rev .send_content').css('padding-bottom','0'); */
$(".send_top .send_right .phone_bottom").css("bottom","64px");
$('.send_btn .btnType:first-child').html('예약하기'); $('.send_btn .btnType:first-child').html('예약하기');
}); });