Merge branch 'master' into kakaoFT
@3c22198dc83aad55aab5dae79647098492527478
--- src/main/java/itn/let/mjo/pay/web/MjonPayController.java
+++ src/main/java/itn/let/mjo/pay/web/MjonPayController.java
... | ... | @@ -3003,6 +3003,41 @@ |
| 3003 | 3003 |
try { wb.close(); } catch(Exception ignore) {}
|
| 3004 | 3004 |
} |
| 3005 | 3005 |
} |
| 3006 |
+ |
|
| 3007 |
+ |
|
| 3008 |
+ @RequestMapping(value= {"/web/member/pay/PrintPayUserSWListAjax.do"})
|
|
| 3009 |
+ public String printPayUserSWListAjax( |
|
| 3010 |
+ @ModelAttribute("searchVO") MjonMsgVO mjonMsgVO
|
|
| 3011 |
+ , RedirectAttributes redirectAttributes |
|
| 3012 |
+ , ModelMap model) throws Exception {
|
|
| 3013 |
+ //로그인 권한정보 불러오기 |
|
| 3014 |
+ LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; |
|
| 3015 |
+ String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId()); |
|
| 3016 |
+ String userNm = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getName()); |
|
| 3017 |
+ |
|
| 3018 |
+ mjonMsgVO.setUserId(userId); |
|
| 3019 |
+ model.addAttribute("userNm", userNm);
|
|
| 3020 |
+ |
|
| 3021 |
+ |
|
| 3022 |
+ mjonMsgVO.setFirstIndex(0); |
|
| 3023 |
+ mjonMsgVO.setRecordCountPerPage(10000); |
|
| 3024 |
+ |
|
| 3025 |
+ //결제 리스트 정보 불러오기 |
|
| 3026 |
+ List<MjonMsgVO> payUserList = mjonMsgDataService.selectPayUserSWList(mjonMsgVO); |
|
| 3027 |
+ model.addAttribute("payUserList", payUserList);
|
|
| 3028 |
+ |
|
| 3029 |
+ Calendar cal = Calendar.getInstance(); |
|
| 3030 |
+ |
|
| 3031 |
+ int year = cal.get(Calendar.YEAR); |
|
| 3032 |
+ int month = cal.get(Calendar.MONTH) + 1; |
|
| 3033 |
+ int day = cal.get(Calendar.DAY_OF_MONTH); |
|
| 3034 |
+ |
|
| 3035 |
+ model.addAttribute("year", year);
|
|
| 3036 |
+ model.addAttribute("month", month);
|
|
| 3037 |
+ model.addAttribute("day", day);
|
|
| 3038 |
+ |
|
| 3039 |
+ return "web/pay/PrintPayUserSWListPopUp"; |
|
| 3040 |
+ } |
|
| 3006 | 3041 |
|
| 3007 | 3042 |
|
| 3008 | 3043 |
|
--- src/main/webapp/WEB-INF/jsp/web/com/webCommonHeader.jsp
+++ src/main/webapp/WEB-INF/jsp/web/com/webCommonHeader.jsp
... | ... | @@ -1524,7 +1524,7 @@ |
| 1524 | 1524 |
<li><a href="<c:out value='/web/pay/PayGuide.do'/>" rel="nosublink">요금안내/견적내기</a></li> |
| 1525 | 1525 |
<li><a href="<c:out value='/web/member/pay/PayView.do'/>" rel="nosublink">결제하기</a></li> |
| 1526 | 1526 |
<li><a href="<c:out value='/web/member/pay/PayList.do'/>" rel="nosublink">요금 결제내역</a></li> |
| 1527 |
- <li><a href="<c:out value='/web/member/pay/PayUserList.do'/>" rel="nosublink">요금 사용내역</a></li> |
|
| 1527 |
+ <li><a href="<c:out value='/web/member/pay/PayUserSWList.do'/>" rel="nosublink">요금 사용내역</a></li> |
|
| 1528 | 1528 |
<!-- 현금영수증 자동발행 주석 --> |
| 1529 | 1529 |
<%-- <li><a href="<c:out value='/web/member/pay/BillPub.do'/>" rel="nosublink">계산서/현금영수증 발행 등록</a></li> --%> |
| 1530 | 1530 |
<li><a href="<c:out value='/web/member/pay/BillPub.do'/>" rel="nosublink">세금계산서 발행</a></li> |
--- src/main/webapp/WEB-INF/jsp/web/pay/BillPub.jsp
+++ src/main/webapp/WEB-INF/jsp/web/pay/BillPub.jsp
... | ... | @@ -495,7 +495,7 @@ |
| 495 | 495 |
<li class="tab"><button type="button" onclick="location.href='/web/pay/PayGuide.do'">요금안내/견적내기</button></li> |
| 496 | 496 |
<li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayView.do'">결제하기</button></li> |
| 497 | 497 |
<li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayList.do'">요금 결제내역</button></li> |
| 498 |
- <li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayUserList.do'">요금 사용내역</button></li> |
|
| 498 |
+ <li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayUserSWList.do'">요금 사용내역</button></li> |
|
| 499 | 499 |
<!-- <li class="tab active"><button type="button">계산서/현금영수증 발행 등록</button></li> --> |
| 500 | 500 |
<li class="tab active"><button type="button">세금계산서 발행 등록</button></li> |
| 501 | 501 |
</ul><!--// tab button --> |
--- src/main/webapp/WEB-INF/jsp/web/pay/PayGuide.jsp
+++ src/main/webapp/WEB-INF/jsp/web/pay/PayGuide.jsp
... | ... | @@ -405,7 +405,7 @@ |
| 405 | 405 |
<li class="tab active"><button type="button">요금안내/견적내기</button></li> |
| 406 | 406 |
<li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayView.do'">결제하기</button></li> |
| 407 | 407 |
<li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayList.do'">요금 결제내역</button></li> |
| 408 |
- <li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayUserList.do'">요금 사용내역</button></li> |
|
| 408 |
+ <li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayUserSWList.do'">요금 사용내역</button></li> |
|
| 409 | 409 |
<li class="tab"><button type="button" onclick="location.href='/web/member/pay/BillPub.do'">세금계산서 발행 등록</button></li> |
| 410 | 410 |
</ul> |
| 411 | 411 |
<!--// tab button --> |
--- src/main/webapp/WEB-INF/jsp/web/pay/PayList.jsp
+++ src/main/webapp/WEB-INF/jsp/web/pay/PayList.jsp
... | ... | @@ -171,7 +171,7 @@ |
| 171 | 171 |
<li class="tab"><button type="button" onclick="location.href='/web/pay/PayGuide.do'">요금안내/견적내기</button></li> |
| 172 | 172 |
<li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayView.do'">결제하기</button></li> |
| 173 | 173 |
<li class="tab active"><button type="button" >요금 결제내역</button></li> |
| 174 |
- <li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayUserList.do'">요금 사용내역</button></li> |
|
| 174 |
+ <li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayUserSWList.do'">요금 사용내역</button></li> |
|
| 175 | 175 |
<!-- 현금영수증 자동발행 주석 --> |
| 176 | 176 |
<!-- <li class="tab"><button type="button" onclick="location.href='/web/member/pay/BillPub.do'">계산서/현금영수증 발행 등록</button></li> --> |
| 177 | 177 |
<li class="tab"><button type="button" onclick="location.href='/web/member/pay/BillPub.do'">세금계산서 발행 등록</button></li> |
--- src/main/webapp/WEB-INF/jsp/web/pay/PayUserSWList.jsp
+++ src/main/webapp/WEB-INF/jsp/web/pay/PayUserSWList.jsp
... | ... | @@ -358,6 +358,10 @@ |
| 358 | 358 |
</span>원 |
| 359 | 359 |
</p> |
| 360 | 360 |
</div> |
| 361 |
+ <dl> |
|
| 362 |
+ <dt>* 당월 납부 예상 포인트</dt> |
|
| 363 |
+ <dd>- 납부 예상금액 결제 시 적립되는 포인트</dd> |
|
| 364 |
+ </dl> |
|
| 361 | 365 |
</div> |
| 362 | 366 |
|
| 363 | 367 |
<%-- 현재 회원의 보유잔액(캐시) --%> |
--- src/main/webapp/WEB-INF/jsp/web/pay/PayUserSWListAjax.jsp
+++ src/main/webapp/WEB-INF/jsp/web/pay/PayUserSWListAjax.jsp
... | ... | @@ -160,7 +160,7 @@ |
| 160 | 160 |
|
| 161 | 161 |
$("#listForm").attr("target","msgSentPrint");
|
| 162 | 162 |
window.open('', 'msgSentPrint', 'width='+ popup_wid +', height='+ popup_ht +', left=' + popup_left + ', top='+ popup_top );
|
| 163 |
- $("#listForm").attr({"action":"/web/member/pay/PrintPayUserListAjax.do", "method":"post"}).submit();
|
|
| 163 |
+ $("#listForm").attr({"action":"/web/member/pay/PrintPayUserSWListAjax.do", "method":"post"}).submit();
|
|
| 164 | 164 |
} |
| 165 | 165 |
|
| 166 | 166 |
//환불요청 내역 프린트 출력 팝업 |
--- src/main/webapp/WEB-INF/jsp/web/pay/PayView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/pay/PayView.jsp
... | ... | @@ -800,7 +800,7 @@ |
| 800 | 800 |
<li class="tab"><button type="button" onclick="location.href='/web/pay/PayGuide.do'">요금안내/견적내기</button></li> |
| 801 | 801 |
<li class="tab active"><button type="button">결제하기</button></li> |
| 802 | 802 |
<li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayList.do'">요금 결제내역</button></li> |
| 803 |
- <li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayUserList.do'">요금 사용내역</button></li> |
|
| 803 |
+ <li class="tab"><button type="button" onclick="location.href='/web/member/pay/PayUserSWList.do'">요금 사용내역</button></li> |
|
| 804 | 804 |
<!-- 현금영수증 자동발행 주석 --> |
| 805 | 805 |
<!-- <li class="tab"><button type="button" onclick="location.href='/web/member/pay/BillPub.do'">계산서/현금영수증 발행 등록</button></li> --> |
| 806 | 806 |
<li class="tab"><button type="button" onclick="location.href='/web/member/pay/BillPub.do'">세금계산서 발행 등록</button></li> |
+++ src/main/webapp/WEB-INF/jsp/web/pay/PrintPayUserSWListPopUp.jsp
... | ... | @@ -0,0 +1,227 @@ |
| 1 | +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> | |
| 2 | +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> | |
| 3 | +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> | |
| 4 | +<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> | |
| 5 | +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> | |
| 6 | +<%@ page import="itn.com.cmm.LoginVO" %> | |
| 7 | +<!DOCTYPE html> | |
| 8 | +<html lang="ko"> | |
| 9 | + <head> | |
| 10 | + <meta charset="UTF-8"> | |
| 11 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 12 | + <title>요금 사용내역</title> | |
| 13 | + <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap" rel="stylesheet"> | |
| 14 | + <link rel="stylesheet" href="/publish/css/reset.css"> | |
| 15 | + <link rel="stylesheet" href="/publish/css/common.css"> | |
| 16 | + <link rel="stylesheet" href="/publish/css/estimate.css"> | |
| 17 | + <link rel="stylesheet" href="/publish/css/font.css"> | |
| 18 | + <link rel="stylesheet" href="/publish/css/button.css"> | |
| 19 | + </head> | |
| 20 | + <script type="text/javascript"> | |
| 21 | + function f_print(){ | |
| 22 | + | |
| 23 | + document.getElementById('est_btn_wrap').style.display = 'none'; | |
| 24 | + var initBody = document.body.innerHTML; | |
| 25 | + window.onbeforeprint = function(){ | |
| 26 | + // print_area는 인쇄하고자 하는 영역의 ID를 말합니다.( 필수 ) | |
| 27 | +// document.body.innerHTML = document.getElementById("print_area").innerHTML; | |
| 28 | + } | |
| 29 | + window.onafterprint = function(){ | |
| 30 | + document.body.innerHTML = initBody; | |
| 31 | + } | |
| 32 | + window.print(); | |
| 33 | + document.getElementById('est_btn_wrap').style.display = ''; | |
| 34 | + } | |
| 35 | + </script> | |
| 36 | + <body> | |
| 37 | + <!-- 견적서 --> | |
| 38 | + <div class="estimate_wrap"> | |
| 39 | + <div class="estimate"> | |
| 40 | + <div class="est_head clearfix"> | |
| 41 | + <img src="/publish/images/CI.png" alt="문자온 CI"> | |
| 42 | + <div class="clearfix"> | |
| 43 | + <p>(12248) 경기도 남양주시 다산순환로 20, A동 735호(다산동, 현대프리미어캠퍼스)</p> | |
| 44 | + <p>TEL 010-8432-9333</p> | |
| 45 | + </div> | |
| 46 | + </div> | |
| 47 | + <div class="est_body"> | |
| 48 | + <h2>요금 사용내역</h2> | |
| 49 | + <div class="cont1 tb_ver2"> | |
| 50 | + <div> | |
| 51 | + <table class="est_table"> | |
| 52 | + <caption>발신자 정보</caption> | |
| 53 | + <colgroup> | |
| 54 | + <col style="width: 50px;"> | |
| 55 | + <col style="width: auto;"> | |
| 56 | + </colgroup> | |
| 57 | + <tbody> | |
| 58 | + <tr> | |
| 59 | + <th></th> | |
| 60 | + <td colspan="2" class="colspan"> | |
| 61 | + <span><c:out value="${userNm}"/></span> 님의 사용내역을 아래와 같이 확인합니다. | |
| 62 | + </td> | |
| 63 | + </tr> | |
| 64 | + </tbody> | |
| 65 | + </table> | |
| 66 | + </div> | |
| 67 | + </div> | |
| 68 | + <div class="cont3"> | |
| 69 | + <div class="est_table2_wrap"> | |
| 70 | + <table class="est_table2"> | |
| 71 | + <caption>사용날짜, 문자유형, 문자내용, 충전 충전금, 충전 포인트, 사용 충전금, 사용 포인트, 잔액 충전금, 잔액 포인트를 제공하는 표</caption> | |
| 72 | + <colgroup> | |
| 73 | + <col style="width: 15%;"> | |
| 74 | + <col style="width: 10%;"> | |
| 75 | + <col style="width: 15%;"> | |
| 76 | + <col style="width: 15%;"> | |
| 77 | + <col style="width: 10%;"> | |
| 78 | + <%-- <col style="width: 10%;"> | |
| 79 | + <col style="width: 15%;"> | |
| 80 | + <col style="width: 10%;"> --%> | |
| 81 | + </colgroup> | |
| 82 | + <thead> | |
| 83 | + <tr> | |
| 84 | + <th rowspan="2" style=" vertical-align : middle;"> | |
| 85 | + 날짜 | |
| 86 | + </th> | |
| 87 | + <th rowspan="2" style=" vertical-align : middle;"> | |
| 88 | + 문자유형 | |
| 89 | + </th> | |
| 90 | + <th rowspan="2" style=" vertical-align : middle;border-right:1px solid #ccc;"> | |
| 91 | + 발송건수 | |
| 92 | + </th> | |
| 93 | + <!-- <th colspan="2">충전</th> --> | |
| 94 | + <th colspan="2">사용</th> | |
| 95 | + <!-- <th colspan="2">잔액</th> --> | |
| 96 | + </tr> | |
| 97 | + <tr> | |
| 98 | + <th>충전금</th> | |
| 99 | + <th>포인트</th> | |
| 100 | + <!-- <th>충전금</th> | |
| 101 | + <th>포인트</th> | |
| 102 | + <th>충전금</th> | |
| 103 | + <th>포인트</th> --> | |
| 104 | + </tr> | |
| 105 | + </thead> | |
| 106 | + <tbody> | |
| 107 | + <c:choose> | |
| 108 | + <c:when test="${not empty payUserList}"> | |
| 109 | + <c:forEach var="payUserInfo" items="${payUserList}" varStatus="status"> | |
| 110 | + <tr> | |
| 111 | + <td> | |
| 112 | + <c:out value="${payUserInfo.regDate}"/> | |
| 113 | + </td> | |
| 114 | + <td> | |
| 115 | + <p style="text-align:center;"> | |
| 116 | + <c:choose> | |
| 117 | + <c:when test="${payUserInfo.msgTypeTxt eq '6' && payUserInfo.fileCnt eq 0 }"> | |
| 118 | + 장문 | |
| 119 | + </c:when> | |
| 120 | + <c:when test="${payUserInfo.msgTypeTxt eq '6' && payUserInfo.fileCnt ne 0 }"> | |
| 121 | + 그림 | |
| 122 | + </c:when> | |
| 123 | + <c:when test="${payUserInfo.msgTypeTxt eq '8'}"> | |
| 124 | + 알림톡 | |
| 125 | + </c:when> | |
| 126 | + <c:when test="${payUserInfo.msgTypeTxt eq '9'}"> | |
| 127 | + 친구톡 | |
| 128 | + </c:when> | |
| 129 | + <c:when test="${payUserInfo.msgTypeTxt eq 'fax'}"> | |
| 130 | + 펙스 | |
| 131 | + </c:when> | |
| 132 | + <c:otherwise> | |
| 133 | + 단문 | |
| 134 | + </c:otherwise> | |
| 135 | + </c:choose> | |
| 136 | + </p> | |
| 137 | + </td> | |
| 138 | + <td> | |
| 139 | + <c:out value="${payUserInfo.succSendCnt}"/> | |
| 140 | + <c:if test="${payUserInfo.msgTypeTxt eq 'fax'}"> | |
| 141 | + (<c:out value="${payUserInfo.fileCnt}"/>) | |
| 142 | + </c:if> | |
| 143 | + </td> | |
| 144 | + <td> | |
| 145 | + <p class="fwRg c_002c9a" style="text-align:center;"> | |
| 146 | + <fmt:formatNumber type="number" maxFractionDigits="3" value="${payUserInfo.succSendPrice}" var="succCash" /> | |
| 147 | + <c:out value="${succCash}"/> | |
| 148 | + </p> | |
| 149 | + </td> | |
| 150 | + <td> | |
| 151 | + <p class="fwRg c_002c9a" style="text-align:center;"> | |
| 152 | + 0 | |
| 153 | + </p> | |
| 154 | + </td> | |
| 155 | + <%-- <td> | |
| 156 | + <p class="fwRg c_002c9a"> | |
| 157 | + <fmt:formatNumber type="number" maxFractionDigits="3" value="${payUserInfo.totPrice}" var="totPrice" /> | |
| 158 | + <c:out value="${totPrice}"/> | |
| 159 | + </p> | |
| 160 | + </td> | |
| 161 | + <td> | |
| 162 | + <p class="fwRg c_002c9a"> | |
| 163 | + 0 | |
| 164 | + </p> | |
| 165 | + </td> | |
| 166 | + <td> | |
| 167 | + <p class="fwRg c_222"> | |
| 168 | + <fmt:formatNumber type="number" maxFractionDigits="3" value="${payUserInfo.thisPoint}" var="thisPoint" /> | |
| 169 | + <c:out value="${thisPoint}"/> | |
| 170 | + </p> | |
| 171 | + </td> | |
| 172 | + <td> | |
| 173 | + <p class="fwRg c_222"> | |
| 174 | + <c:out value="${payUserInfo.befPoint}"/> | |
| 175 | + </p> | |
| 176 | + </td> --%> | |
| 177 | + </tr> | |
| 178 | + </c:forEach> | |
| 179 | + </c:when> | |
| 180 | + <c:otherwise> | |
| 181 | + <tr> | |
| 182 | + <td colspan="5"> | |
| 183 | + 사용내역이 없습니다. | |
| 184 | + </td> | |
| 185 | + </tr> | |
| 186 | + </c:otherwise> | |
| 187 | + </c:choose> | |
| 188 | + </tbody> | |
| 189 | + </table> | |
| 190 | + </div> | |
| 191 | + </div> | |
| 192 | + <div class="cont4"> | |
| 193 | + <table class="est_table"> | |
| 194 | + <caption>공급가액, 부가세, 총 결제금액에 대한 표</caption> | |
| 195 | + <colgroup> | |
| 196 | + <col style="width: 64px;"> | |
| 197 | + <col style="width: auto;"> | |
| 198 | + </colgroup> | |
| 199 | + <tbody> | |
| 200 | + <tr> | |
| 201 | + <th>대표번호</th> | |
| 202 | + <td>010-8432-9333</td> | |
| 203 | + </tr> | |
| 204 | + <tr> | |
| 205 | + <th>이메일</th> | |
| 206 | + <td>help@iten.co.kr</td> | |
| 207 | + </tr> | |
| 208 | + </tbody> | |
| 209 | + </table> | |
| 210 | + </div> | |
| 211 | + <div class="cont5"> | |
| 212 | + <p><span><c:out value="${year}"/></span> 년 <span><c:out value="${month}"/></span> 월 <span><c:out value="${day}"/></span> 일</p> | |
| 213 | + <div> | |
| 214 | + <span>주식회사 아이티앤 대표이사</span> | |
| 215 | + <span>유 인 식</span> | |
| 216 | + <span class="big_stamp"><img src="/publish/images/content/big_stamp.png"></span> | |
| 217 | + </div> | |
| 218 | + </div> | |
| 219 | + </div> | |
| 220 | + <div class="est_btn_wrap" id="est_btn_wrap"> | |
| 221 | + <button type="button" class="btnType" onclick="javascript:f_print(); return false;"><i class="print_img"></i>인쇄하기</button> | |
| 222 | + </div> | |
| 223 | + </div> | |
| 224 | + </div> | |
| 225 | + <!--// 견적서 --> | |
| 226 | + </body> | |
| 227 | +</html> |
--- src/main/webapp/WEB-INF/jsp/web/user/mberInfoIndex.jsp
+++ src/main/webapp/WEB-INF/jsp/web/user/mberInfoIndex.jsp
... | ... | @@ -484,7 +484,7 @@ |
| 484 | 484 |
</c:otherwise> |
| 485 | 485 |
</c:choose> |
| 486 | 486 |
|
| 487 |
- <button type="button" onclick="location.href='/web/member/pay/PayUserList.do';"> |
|
| 487 |
+ <button type="button" onclick="location.href='/web/member/pay/PayUserSWList.do';"> |
|
| 488 | 488 |
<img src="/publish/images/content/mypage_plus.png" alt="더보기"> |
| 489 | 489 |
</button> |
| 490 | 490 |
<div class="table_wrap"> |
--- src/main/webapp/publish/css/content.css
+++ src/main/webapp/publish/css/content.css
... | ... | @@ -477,11 +477,11 @@ |
| 477 | 477 |
.send_top .top_content {background-color: #fff;padding: 30px 40px;border-radius: 10px;}
|
| 478 | 478 |
.send_top .send_price {display: inline-block;position: relative;margin-left:50px;vertical-align: middle;line-height: 25px;height: 27.5px;}
|
| 479 | 479 |
.send_top .send_price::after {content: "";position: absolute;background-color: #002c9a;width: 3px;height: 20px;border-radius: 2px; top: 50%;transform: translateY(-50%);left: -30px;}
|
| 480 |
-.send_top .send_price li {display: inline-block;color: #555;padding-right: 12px;margin-right: 6px;position: relative; font-size: 15px; letter-spacing: -0.5px;}
|
|
| 480 |
+.send_top .send_price li {display: inline-block;color: #555;padding-right: 7px;margin-right: 5px;position: relative; font-size: 15px; letter-spacing: -0.5px;}
|
|
| 481 | 481 |
.send_top .heading .send_price li:first-child {margin-right:28px;}
|
| 482 | 482 |
.send_top .send_price .price_line::after {content: "/";position: absolute;top: 50%;transform: translateY(-50%);right: 0;color: #ababab;font-size: 14px;}
|
| 483 | 483 |
.send_top .send_price li .type {border: 1px solid #46484a;border-radius: 3px;margin-right: 8px; color: #46484a;padding: 0 4px;}
|
| 484 |
-.send_top .send_price li .price {color: #e40000;font-size: 18px;font-weight: 700;}
|
|
| 484 |
+.send_top .send_price li .price {color: #e40000;font-size: 16px;font-weight: 700;}
|
|
| 485 | 485 |
.send_top .send_general {width: 100%;display: flex;display: -ms-flexbox; justify-content: space-between; position: relative;}
|
| 486 | 486 |
/* left area 내용 입력 */ |
| 487 | 487 |
.send_top .send_left {max-width: 870px;flex-basis: 68%;}
|
... | ... | @@ -1051,7 +1051,7 @@ |
| 1051 | 1051 |
.hisroy_price .hisroy_price_in>div>p:last-child {float: right;}
|
| 1052 | 1052 |
.hisroy_price .hisroy_price_in>div>p>span {font-size: 22px; font-family: 'GmarketSansBold'; color: #002c9a; padding-right: 5px;}
|
| 1053 | 1053 |
/*후불회원 요금 사용내역*/ |
| 1054 |
-.hisroy_price .hisroy_defprice_in {background-color: #f2f2f2; width: calc(100%/4 - 20px); padding: 28px 22px; border-radius: 5px; box-sizing: border-box;}
|
|
| 1054 |
+.hisroy_price .hisroy_defprice_in {position:relative; background-color: #f2f2f2; width: calc(100%/4 - 20px); padding: 28px 22px 40px 22px; border-radius: 5px; box-sizing: border-box;}
|
|
| 1055 | 1055 |
.hisroy_price .hisroy_defprice_in>p {font-size: 20px; font-weight: 600; margin-bottom: 25px; font-family: 'GmarketSansBold';}
|
| 1056 | 1056 |
.hisroy_price .hisroy_defprice_in i{background-size: 100%;}
|
| 1057 | 1057 |
.hisroy_price .hisroy_defprice_in:nth-child(1) i {background-image: url(/publish/images/content/history_icon1.png); width: 23px; height: 26px; margin: 0 10px 2px 0;}
|
... | ... | @@ -1064,6 +1064,11 @@ |
| 1064 | 1064 |
.hisroy_price .hisroy_defprice_in>div>p:first-child {float: left;}
|
| 1065 | 1065 |
.hisroy_price .hisroy_defprice_in>div>p:last-child {float: right;}
|
| 1066 | 1066 |
.hisroy_price .hisroy_defprice_in>div>p>span {font-size: 22px; font-family: 'GmarketSansBold'; color: #002c9a; padding-right: 5px;}
|
| 1067 |
+.hisroy_price .hisroy_defprice_in .clearfix{ display: flex; justify-content: space-between; align-items: center; height: 40px; background-color: #fff; padding: 5px 15px; border-radius: 5px; margin: 0 0 10px 0;}
|
|
| 1068 |
+.hisroy_price .hisroy_defprice_in .clearfix:last-child{margin: 0 0 0 0; text-align: right;}
|
|
| 1069 |
+.hisroy_price .hisroy_defprice_in .clearfix p:nth-child(2n){width: calc(100% - 50px); text-align: right;}
|
|
| 1070 |
+.hisroy_price .hisroy_defprice_in dl {position: absolute; font-size:13px; color:#777; padding:0; top:178px;}
|
|
| 1071 |
+.hisroy_price .hisroy_defprice_in dl dd {padding:2px 0 0 8px;}
|
|
| 1067 | 1072 |
|
| 1068 | 1073 |
.history_details .tType1_title{margin: 0;}
|
| 1069 | 1074 |
.history_details .tType1_title img{margin: -4px 0 0 0;}
|
... | ... | @@ -2076,6 +2081,10 @@ |
| 2076 | 2081 |
.sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right button{font-size:14px;letter-spacing:-1px;}
|
| 2077 | 2082 |
.sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right .btn_gray.fill{padding:0 5px;}
|
| 2078 | 2083 |
.sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right .btn_yellow.fill{padding:0 3px;}
|
| 2084 |
+ |
|
| 2085 |
+ /* 후불회원 요금사용내역*/ |
|
| 2086 |
+ .hisroy_price .hisroy_defprice_in>p {font-size: 18px; font-weight: 600; margin-bottom: 25px; font-family: 'GmarketSansBold';}
|
|
| 2087 |
+ .hisroy_price .hisroy_defprice_in>div>p>span {font-size: 18px; font-family: 'GmarketSansBold'; color: #002c9a; padding-right: 5px;}
|
|
| 2079 | 2088 |
} |
| 2080 | 2089 |
|
| 2081 | 2090 |
@media only screen and (max-width:1480px){
|
... | ... | @@ -2216,7 +2225,8 @@ |
| 2216 | 2225 |
.kakaotalkset_cont .kakao_wrap .template_category{width: 259px;}
|
| 2217 | 2226 |
|
| 2218 | 2227 |
/* 선거문자 */ |
| 2219 |
- .sub .election .list_bottom .list_bottom_right button{width:90px;height:30px;font-size:14px;letter-spacing:-1.4px;}
|
|
| 2228 |
+ .sub .election .list_bottom .list_bottom_right button{width:90px;height:30px;font-size:14px;letter-spacing:-1.4px;}
|
|
| 2229 |
+ |
|
| 2220 | 2230 |
} |
| 2221 | 2231 |
|
| 2222 | 2232 |
@media only screen and (max-width:1300px){
|
--- src/main/webapp/publish/css/mem.css
+++ src/main/webapp/publish/css/mem.css
... | ... | @@ -317,8 +317,8 @@ |
| 317 | 317 |
.my_dashboard .event_text span{font-size: 15px; font-weight: bold; color: #e40000; padding: 0 0 0 0;} */
|
| 318 | 318 |
.my_dashboard .send_price{display: flex;width: calc(100% - 490px); height: 80%; margin: 0 0 0 0; line-height: 1; align-items: stretch;}
|
| 319 | 319 |
.my_dashboard .send_price::after{display: none;}
|
| 320 |
-.my_dashboard .send_price .price_title{display: flex; width: 100px; background-color: #eea301; color: #fff; font-size: 20px; font-weight: bold; border-radius: 10px 0 0 10px; align-items: center; justify-content: center; line-height: 1.5;}
|
|
| 321 |
-.my_dashboard .send_price .price_wrap{width: calc(100% - 100px); background-color: #fff; border-radius: 0 10px 10px 0;}
|
|
| 320 |
+.my_dashboard .send_price .price_title{display: flex; width: 100px; background-color: #eea301; color: #fff; font-size: 18px; font-weight: bold; border-radius: 10px 0 0 10px; align-items: center; justify-content: center; line-height: 1.5;}
|
|
| 321 |
+.my_dashboard .send_price .price_wrap{width: calc(135% - 100px); background-color: #fff; border-radius: 0 10px 10px 0;}
|
|
| 322 | 322 |
.my_dashboard .send_price ul{display: flex; width: calc(100% - 0px); border-bottom: 1px dashed #d5d5d5; margin: 0 auto; padding: 10px 14px; align-items: center; flex-wrap: wrap; box-sizing: border-box;}
|
| 323 | 323 |
.my_dashboard .send_price ul:last-child{border: 0; align-items: flex-start;}
|
| 324 | 324 |
.my_dashboard .send_price ul:first-child li:last-child{margin: 0; padding: 0}
|
... | ... | @@ -673,8 +673,8 @@ |
| 673 | 673 |
/* 마이페이지 */ |
| 674 | 674 |
/*등급제 아이콘 추가*/ |
| 675 | 675 |
@media only screen and (max-width:1540px){
|
| 676 |
- .my_dashboard .send_price{width: calc(100% - 486px);}
|
|
| 677 |
- .my_dashboard .send_price .price_wrap{width: calc(100% - 73px);}
|
|
| 676 |
+ .my_dashboard .send_price{width: calc(102% - 486px);}
|
|
| 677 |
+ .my_dashboard .send_price .price_wrap{width: calc(105% - 73px);}
|
|
| 678 | 678 |
.my_dashboard .send_price .price_title{width: 65px;}
|
| 679 | 679 |
.send_top .send_price li{margin-right: 2px; padding-right:6px;}
|
| 680 | 680 |
.my_dashboard>.my_dashboard_cont1, .my_dashboard>.my_dashboard_cont3{flex-wrap: nowrap;}
|
... | ... | @@ -698,9 +698,10 @@ |
| 698 | 698 |
.my_dashboard .my_dashboard_cont1 button {font-size: 16px; padding: 0 8px; margin: 0 0 0 13px; color: #002c9a;}
|
| 699 | 699 |
.my_dashboard_cont1 .level_icon{margin: 0 22px 0 0;}
|
| 700 | 700 |
.my_dashboard .send_price{margin: 0 -24px 0 0;}
|
| 701 |
- .my_dashboard .send_price .price_wrap{width: calc(100% - 88px);}
|
|
| 701 |
+ .my_dashboard .send_price .price_wrap{width: calc(104% - 88px);}
|
|
| 702 | 702 |
.my_dashboard .title_wrap .btnType{margin: 0 10px 0 0;}
|
| 703 | 703 |
/*.my_dashboard .send_price .price_title{width: 75px;}*/
|
| 704 |
+ .my_dashboard .send_price .price_title{width: 50px; font-size: 16px; line-height: 1.4:}
|
|
| 704 | 705 |
} |
| 705 | 706 |
|
| 706 | 707 |
@media only screen and (max-width:1380px){
|
... | ... | @@ -710,9 +711,8 @@ |
| 710 | 711 |
@media only screen and (max-width:1300px){
|
| 711 | 712 |
/* join3 */ |
| 712 | 713 |
.mem_cont.join3 .text_middle>div {font-size: 16px;}
|
| 713 |
- .my_dashboard .send_price .price_wrap{width:calc(100% - 80px);}
|
|
| 714 |
- .my_dashboard .send_price .price_title{width: 60px; font-size:18px; line-height:1.4;}
|
|
| 715 |
- .my_dashboard .send_price{width: calc(100% - 375px);}
|
|
| 714 |
+ .my_dashboard .send_price .price_wrap{width:calc(101% - 72px);}
|
|
| 715 |
+ .my_dashboard .send_price{width: calc(102% - 320px);}
|
|
| 716 | 716 |
} |
| 717 | 717 |
@media only screen and (max-width:1280px{
|
| 718 | 718 |
.my_dashboard .send_price ul{padding: 10px 10px;}
|
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?