2023/10/26 선결제 내용 등록 팝업
@09572f23832be3cd84bb041146817594db827ba8
--- src/main/webapp/pb/css/content.css
+++ src/main/webapp/pb/css/content.css
... | ... | @@ -307,6 +307,8 @@ |
| 307 | 307 |
.pageCont .btnWrap .btnType1:hover{background-color: #1c4ce7;}
|
| 308 | 308 |
.pageCont .btnWrap .btnType2{border: 1px solid #456ded;color: #456ded;}
|
| 309 | 309 |
.pageCont .btnWrap .btnType2:hover{background-color: #f2f4f7;}
|
| 310 |
+.pageCont .btnWrap1 {text-align:center; padding:20px 0 0 0;} /* 미니팝업 버튼 영역 추가*/
|
|
| 311 |
+.pageCont .btnWrap1 .btnType3 {background-color:#456ded; color:#fff; height:45px; border-radius:5px; min-width:70px; margin:0 5px 0 0;} /* 미니팝업 버튼 영역 추가*/
|
|
| 310 | 312 |
|
| 311 | 313 |
.tbType2 tbody tr td input[type="radio"]+label+label{font-size: 1.125em;font-weight: 400;margin-left: 5px;}
|
| 312 | 314 |
|
+++ src/main/webapp/pb/popup_advancePayment.html
... | ... | @@ -0,0 +1,106 @@ |
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="ko"> | |
| 3 | + <head> | |
| 4 | + <title>선결제 내용 등록</title> | |
| 5 | + <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
| 6 | + <link rel="stylesheet" href="/pb/css/reset.css"> | |
| 7 | + <link rel="stylesheet" href="/pb/css/common.css"> | |
| 8 | + <link rel="stylesheet" href="/pb/css/content.css"> | |
| 9 | + <link rel="stylesheet" href="/pb/css/popup.css"> | |
| 10 | + <script type="text/javascript" src="/pb/js/jquery-3.5.0.js"></script> | |
| 11 | + <script type="text/javascript" src="/pb/js/common.js"></script> | |
| 12 | + <script type="text/javascript" src="<c:url value='/js/EgovMultiFile.js'/>"></script> | |
| 13 | + <script type="text/javascript" src="<c:url value='/js/EgovCalPopup.js'/>"></script> | |
| 14 | + <script type="text/javascript" src="<c:url value='/js/ncms_common.js' />"></script> | |
| 15 | + | |
| 16 | + <style> | |
| 17 | + .calBtn{ | |
| 18 | + border: none; | |
| 19 | + background-color: transparent !important; | |
| 20 | + background-image: url(/pb/img/common/calendarIcon.png); | |
| 21 | + background-repeat: no-repeat; | |
| 22 | + width: 25px; | |
| 23 | + height: 25px !important; | |
| 24 | + vertical-align: middle; | |
| 25 | + margin-left: -38px !important; | |
| 26 | + margin-top: -2px !important; | |
| 27 | + cursor: pointer; | |
| 28 | + } | |
| 29 | + .pageCont {width:100%;padding:50px 30px;box-sizing:border-box;} | |
| 30 | + .tableWrapTotal {margin:0 0 20px;} | |
| 31 | + .tableWrapTotal .tbType1 thead tr:first-child {border-width:1px;} | |
| 32 | + .tableWrapTotal .tbType1 thead tr th {border-left:1px solid #e6e6e6;} | |
| 33 | + .tableWrapTotal .tbType1 thead tr th:first-child {border-left:0 none;} | |
| 34 | + .tableWrapTotal .tbType1 thead tr.content th {font-size:14px;} | |
| 35 | + .tableWrapTotal .tbType1 tbody tr td {border-left:1px solid #e6e6e6;} | |
| 36 | + .tableWrapTotal .tbType1 tbody tr td:first-child {border-left:0 none;} | |
| 37 | + .listSerch .select {height:42px;vertical-align:top;} | |
| 38 | + .pageCont .tbType1 tbody tr td.msg_detail {overflow:inherit;} | |
| 39 | + .pageCont .tbType1 tbody tr td.msg_detail a {overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;} | |
| 40 | + .layer_msg_wrap {position:relative;} | |
| 41 | + .layer_msg_wrap .layer_msg_detail {overflow:hidden;display:none;position:fixed;left:50%;top:50%;width:400px;max-height:600px;background:#eee;transform:translate(-50%, -50%);z-index:1;} | |
| 42 | + .layer_msg_wrap .layer_msg_detail button {position:absolute;right:0;top:0;width:35px;height:35px;} | |
| 43 | + .layer_msg_wrap .layer_msg_detail button:before {content:'';position:absolute;left:50%;top:50%;width:1px;height:14px;margin:-7px 0 0;background:#fff;transform:rotate(-45deg);} | |
| 44 | + .layer_msg_wrap .layer_msg_detail button:after {content:'';position:absolute;left:50%;top:50%;width:1px;height:14px;margin:-7px 0 0;background:#fff;transform:rotate(45deg);} | |
| 45 | + .layer_msg_wrap .layer_msg_detail .title {height:35px;padding:0 15px;font-size:16px;line-height:35px;text-align:left;color:#fff;background:#456ded;border-radius:5px 5px 0 0;} | |
| 46 | + .layer_msg_wrap .layer_msg_detail .content {overflow-y:auto;max-height:535px;margin:15px;padding:10px 15px;line-height:20px;white-space:normal;background:#fff;} | |
| 47 | + .layer_msg_wrap .layer_msg_detail .content .rev_cont {text-align:left;} | |
| 48 | + @media screen and (max-width:916px){ | |
| 49 | + .pageCont .tableWrap table thead tr th {padding:15px 0;} | |
| 50 | + } | |
| 51 | + </style> | |
| 52 | + </head> | |
| 53 | + <body> | |
| 54 | + <div class="loading_layer"> | |
| 55 | + <div class="loading_container"> | |
| 56 | + <div class="bar"></div> | |
| 57 | + <div class="text">Loading</div> | |
| 58 | + </div> | |
| 59 | + </div> | |
| 60 | + | |
| 61 | + <div class="contWrap" style="position:relative;left:inherit;top:inherit;min-height:auto; padding:20px; width:600px; height:475px;"> | |
| 62 | + <div class="pageTitle"> | |
| 63 | + <div class="pageIcon"><img src="/pb/img/pageTitIcon4.png" alt=""></div> | |
| 64 | + <h2 class="titType1 c_222222 fwBold">선결제 내용 등록</h2> | |
| 65 | + <p class="tType6 c_999999">선결제 내용을 등록할 수 있습니다.</p> | |
| 66 | + </div> | |
| 67 | + <div class="pageCont" style="min-height:initial;"> | |
| 68 | + <p style="color:#e40000; margin:-20px 0 10px 0;">* 모든 항목 필수</p> | |
| 69 | + <table class="tbType2"> | |
| 70 | + <colgroup> | |
| 71 | + <col style="width:25%"> | |
| 72 | + <col style="width:75%"> | |
| 73 | + </colgroup> | |
| 74 | + <tbody> | |
| 75 | + <tr class="no_modi"> | |
| 76 | + <th>전송사 :</th> | |
| 77 | + <td><select class="select" style="width:180px;"> | |
| 78 | + <option>전송사(전체)</option> | |
| 79 | + </select> | |
| 80 | + </td> | |
| 81 | + </tr> | |
| 82 | + <tr> | |
| 83 | + <th>결제일시 :</th> | |
| 84 | + <td> | |
| 85 | + <input type="hidden" name="cal_url" id="cal_url" value="/sym/cmm/EgovNormalCalPopup.do"> | |
| 86 | + <a href="#" onclick="javascript:fn_egov_NormalCalendar(document.forms.listForm, document.forms.listForm.ntceEnddeYYYMMDD);"> | |
| 87 | + <input style="width:auto;min-width: 83px;" type="text" class="date_format" name="ntceEnddeYYYMMDD" id="ntceEnddeYYYMMDD" size="4" maxlength="4" readonly="" | |
| 88 | + value="" /> | |
| 89 | + <input type="button" class="calBtn"> | |
| 90 | + </a> | |
| 91 | + <input style="width:auto;min-width:73px; margin:0 0 0 10px;" type="text" size="2"> | |
| 92 | + </td> | |
| 93 | + </tr> | |
| 94 | + <tr> | |
| 95 | + <th>결제금액 :</th> | |
| 96 | + <td><input style="width:auto;min-width:120px;" type="text" size="2"> 원</td> | |
| 97 | + </tr> | |
| 98 | + </tbody> | |
| 99 | + </table> | |
| 100 | + <div class="btnWrap1"> | |
| 101 | + <button type="button" class="btnType3">등록</button><button type="button" class="btnType">취소</button> | |
| 102 | + </div> | |
| 103 | + </div> | |
| 104 | + </div> | |
| 105 | + </body> | |
| 106 | +</html> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?