OrderAddPaymentCompleteMob.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!DOCTYPE html>
  2. <html lang="ko" xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorator="mob/common/layout/SubLayoutMob">
  3. <!--
  4. *******************************************************************************
  5. * @source : OrderAddPaymentCompleteMob.html
  6. * @desc : 추가결제완료화면 Page
  7. *============================================================================
  8. * STYLE24
  9. * Copyright(C) 2020 TSIT, All rights reserved.
  10. *============================================================================
  11. * VER DATE AUTHOR DESCRIPTION
  12. * === =========== ========== =============================================
  13. * 1.0 2021.05.10 jsh77b 최초 작성
  14. *******************************************************************************
  15. -->
  16. <body>
  17. <th:block layout:fragment="content">
  18. <main class="container od">
  19. <section class="content completed">
  20. <div class="inner wide">
  21. <div class="info_complete">
  22. <img th:src="${@environment.getProperty('domain.uximage')} + '/images/mo/ico_complete_check.png'" alt="결제완료">
  23. <p class="txt_box">결제가 완료되었습니다.</p>
  24. </div>
  25. </div>
  26. <div class="inner">
  27. <div class="tbl_wrap pay_wrap">
  28. <div class="tbl_tit">
  29. <h3>결제 정보</h3>
  30. <strong class="pay"><span th:text="|${#numbers.formatInteger(addPayCost, 1, 'COMMA')}|"></span>원</strong>
  31. </div>
  32. <div class="tbl type1">
  33. <table>
  34. <colgroup>
  35. <col width="227">
  36. <col width="*">
  37. </colgroup>
  38. <tr>
  39. <td>
  40. <dl>
  41. <div>
  42. <dt>반품/교환 배송비</dt>
  43. <dd>
  44. <div>
  45. <span th:text="|${#numbers.formatInteger(addPayCost, 1, 'COMMA')}|"></span>원
  46. </div>
  47. </dd>
  48. </div>
  49. <div>
  50. <dt>결제방법</dt>
  51. <dd>
  52. <div th:text="${payMeansNm}"></div>
  53. </dd>
  54. </div>
  55. </dl>
  56. </td>
  57. </tr>
  58. </table>
  59. </div>
  60. </div>
  61. <div class="btn_group btn_group_flex">
  62. <div><button type="button" class="btn btn_dark" onclick="location.href='/'"><span>쇼핑 계속하기</span></button></div>
  63. </div>
  64. </div>
  65. </section>
  66. </main>
  67. <script th:inline="javascript">
  68. //컨텐츠 호출
  69. $(document).ready( function() {
  70. // 2021.06.16 헤더숨김처리
  71. $('#htopSub').hide();
  72. });
  73. </script>
  74. </th:block>
  75. </body>
  76. </html>