| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <!DOCTYPE html>
- <html lang="ko" xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorator="mob/common/layout/SubLayoutMob">
- <!--
- *******************************************************************************
- * @source : OrderAddPaymentCompleteMob.html
- * @desc : 추가결제완료화면 Page
- *============================================================================
- * STYLE24
- * Copyright(C) 2020 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.05.10 jsh77b 최초 작성
- *******************************************************************************
- -->
- <body>
- <th:block layout:fragment="content">
- <main class="container od">
- <section class="content completed">
- <div class="inner wide">
- <div class="info_complete">
- <img th:src="${@environment.getProperty('domain.uximage')} + '/images/mo/ico_complete_check.png'" alt="결제완료">
- <p class="txt_box">결제가 완료되었습니다.</p>
- </div>
- </div>
- <div class="inner">
- <div class="tbl_wrap pay_wrap">
- <div class="tbl_tit">
- <h3>결제 정보</h3>
- <strong class="pay"><span th:text="|${#numbers.formatInteger(addPayCost, 1, 'COMMA')}|"></span>원</strong>
- </div>
- <div class="tbl type1">
- <table>
- <colgroup>
- <col width="227">
- <col width="*">
- </colgroup>
- <tr>
- <td>
- <dl>
- <div>
- <dt>반품/교환 배송비</dt>
- <dd>
- <div>
- <span th:text="|${#numbers.formatInteger(addPayCost, 1, 'COMMA')}|"></span>원
- </div>
- </dd>
- </div>
- <div>
- <dt>결제방법</dt>
- <dd>
- <div th:text="${payMeansNm}"></div>
- </dd>
- </div>
- </dl>
- </td>
- </tr>
- </table>
- </div>
- </div>
- <div class="btn_group btn_group_flex">
- <div><button type="button" class="btn btn_dark" onclick="location.href='/'"><span>쇼핑 계속하기</span></button></div>
- </div>
- </div>
- </section>
- </main>
- <script th:inline="javascript">
- //컨텐츠 호출
- $(document).ready( function() {
- // 2021.06.16 헤더숨김처리
- $('#htopSub').hide();
- });
- </script>
- </th:block>
- </body>
- </html>
|