| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorator="web/common/layout/MypageLayoutWeb">
- <!--
- *******************************************************************************
- * @source : MypageCustSecedeCompleteFormWeb.html
- * @desc : 마이페이지 > 회원탈퇴 완료 Page
- *============================================================================
- * STYLE24
- * Copyright(C) 2021 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.03.24 jsshin 최초 작성
- *******************************************************************************
- -->
- <body>
- <!-- container -->
- <th:block layout:fragment="content">
- <div class="content myMbLeave"> <!-- 페이지특정 클래스 = myMbLeave -->
- <div class="cont_body">
- <!-- CONT-BODY -->
- <div class="lnb">
- <div class="lnb_tit">
- <h2>마이페이지</h2>
- </div>
- <div class="lnb_list">
- <ul id="mypageLnbList"></ul>
- </div>
- </div>
- <div class="cont">
- <div class="sec_head">
- <h3 class="subH1">회원탈퇴</h3>
- </div>
- <div class="sec_body">
- <div class="mb_leave_complete">
- <span th:text="${custNm}"></span> 고객님의 STYLE24 회원탈퇴가 정상적으로 처리되었습니다.
- </div>
- <div class="tbl type5">
- <table>
- <colgroup>
- <col width="25%">
- <col width="25%">
- <col width="25%">
- <col width="25%">
- </colgroup>
- <thead>
- <tr>
- <th scope="col">진행중(주문/취소/반품/교환)</th>
- <th scope="col">포인트(보유/적립예정)</th>
- <th scope="col">상품권 잔여금액</th>
- <th scope="col">쿠폰</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>
- <span class="hold_order">
- <em id="ordCnt">0</em> /
- <em id="cnclCnt">0</em> /
- <em id="rtnCnt">0</em> /
- <em id="exCnt">0</em>
- </span>
- </td>
- <td>
- <span class="hold_point">
- <em id="pntAmt" th:text="|${#numbers.formatDecimal(pointInfo.rmPntAmt, 0, 'COMMA', 0, 'POINT')}P|">0P</em> /
- <em id="expAmt" th:text="|${#numbers.formatDecimal(pointInfo.expectedPntAmt, 0, 'COMMA', 0, 'POINT')}P|">0P</em>
- </span>
- </td>
- <td>
- <span class="hold_voucher">
- <em id="giftAmt" th:text="|${#numbers.formatDecimal(rmGfcdAmt, 0, 'COMMA', 0, 'POINT')}원|">0원</em>
- </span>
- </td>
- <td>
- <span class="hold_coupon">
- <em id="cpnCnt" th:text="|${#numbers.formatDecimal(couponCnt, 0, 'COMMA', 0, 'POINT')}장|">0장</em>
- </span>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="com_info_txt">
- <p class="tit">회원 탈퇴 안내</p>
- <ul>
- <li>탈퇴시 소유하고 있는 포인트, 쿠폰등은 모두 소멸 됩니다.</li>
- <li>거래정보가 있는 경우, 전자상거래 등에서의 소비자 보호에 관한 법률에 따라 계약 또는 청약철회에 관한 기록, 대금결제 및 재화 등의 공급에 관한 기록은 5년동안 보존됩니다.</li>
- <li>보유하셨던 상품권 금액은 탈퇴와 함께 삭제되며 환불되지 않습니다.</li>
- <li>회원 탈퇴 후 STYLE24에 입력하신 상품문의 및 후기,댓글은 삭제되지 않으며,회원정보 삭제로 인해 작성자 본인을 확인 할 수 없어<br>편집 및 삭제처리가 원천적으로 불가능 합니다. 상품문의 및 후기, 댓글 삭제를 원하시는 경우에는 먼저 해당 게시물을 삭제하신 후 탈퇴를 신청하시기 바랍니다.</li>
- <li>진행중인 주문/취소/반품/교환건이 있을 경우에는 탈퇴가 되지 않습니다.</li>
- </ul>
- </div>
- </div>
- <div class="btn_footer_area">
- <button type="button" id="btnConfirm" class="btn btn_dark btn_md" onclick="cfnGoToPage(_PAGE_MAIN);">
- <span>메인이동</span>
- </button>
- </div>
- </div>
- </div>
- </div>
- <script th:inline="javascript">
- /*<![CDATA[*/
- const orderStatInfo = [[${orderStatInfo}]];
- var fnOrderStatInit = function () {
- // 진행중인 주문건
- let orderTotal = orderStatInfo.depositWaitingCount + orderStatInfo.waitingAddPaymentCount
- + orderStatInfo.paymentCompleteCount + orderStatInfo.goodsPrepareCount
- + orderStatInfo.shipPrepareCount + orderStatInfo.shippingCount;
- let total = orderTotal + orderStatInfo.cancelCount + orderStatInfo.returnCount + orderStatInfo.exchangeCount;
- $('#ordCnt').text(orderTotal.addComma());
- // 진행중인 취소건
- $('#cnclCnt').text(orderStatInfo.cancelCount.addComma());
- // 진행중인 반품건
- $('#rtnCnt').text(orderStatInfo.returnCount.addComma());
- // 진행중인 교환건
- $('#exCnt').text(orderStatInfo.exchangeCount.addComma());
- // 토탈 건수
- $('#totalCnt').text(total);
- }
- $(document).ready( function() {
- fnOrderStatInit();
- // 마이페이지 LNB 설정
- fnSetMypageLnbList(11);
- // 마이페이지 location 설정
- fnSetMypageLocation('회원탈퇴');
- });
- /*]]>*/
- </script>
- </th:block>
- </body>
- </html>
|