MypageLayoutWeb.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!DOCTYPE html>
  2. <html lang="ko"
  3. xmlns:th="http://www.thymeleaf.org"
  4. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
  5. <head th:replace="~{web/common/fragments/HeadWeb :: head}"></head>
  6. <body>
  7. <div class="skipComment">
  8. <a href="#content">본문 바로가기</a>
  9. <a href="#gnb">주메뉴 바로가기</a>
  10. <a href="#footer">하단메뉴 바로가기</a>
  11. </div>
  12. <th:block th:replace="~{web/common/fragments/VariablesWeb :: variables}"></th:block>
  13. <!-- GNB -->
  14. <header id="header" th:replace="~{web/common/fragments/GnbWeb :: gnb}"></header>
  15. <!--// GNB -->
  16. <div id="container" class="container my">
  17. <div class="breadcrumb">
  18. <ul id="location">
  19. <li class="bread_home"><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_MAIN);">홈</a></li>
  20. <li class="bread_2depth"><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_MYPAGE);">마이페이지</a></li>
  21. </ul>
  22. </div>
  23. <div class="wrap">
  24. <!-- CONTENT AREA -->
  25. <th:block layout:fragment="content"></th:block>
  26. <!-- // CONTENT AREA -->
  27. <form id="createReview" name="createReview" th:action="@{'/mypage/review/create/form'}" th:method="post">
  28. <input type="hidden" name="ordNo"/>
  29. <input type="hidden" name="ordDtlNo"/>
  30. <input type="hidden" name="goodsCd"/>
  31. <input type="hidden" name="reviewStat"/>
  32. </form>
  33. <form id="addPaymentForm" name="addPaymentForm" th:action="@{'/order/addPaymentForm'}" th:method="post">
  34. <input type="hidden" name="ordNo"/>
  35. <input type="hidden" name="ordChgSq"/>
  36. </form>
  37. <form id="deliveryInfoForm" name="deliveryInfoForm" th:action="@{'/mypage/delivery/info/form'}" th:method="post">
  38. <input type="hidden" name="ordNo"/>
  39. <input type="hidden" name="ordDtlNo"/>
  40. <input type="hidden" name="shipCompCd"/>
  41. <input type="hidden" name="invoiceNo"/>
  42. </form>
  43. </div>
  44. </div>
  45. <!-- Footer -->
  46. <footer id="footer" th:replace="~{web/common/fragments/FooterWeb :: footer}"></footer>
  47. <!--교환상품 옵션변경 팝업 -->
  48. <div class="modal fade exchange_pop" id="exchangePop" tabindex="-1" role="dialog" aria-labelledby="exchangeLabel" aria-hidden="true">
  49. <div class="modal-dialog" role="document">
  50. <div class="modal-content">
  51. <!-- 교환상품 옵션변경 팝업 내용 -->
  52. </div>
  53. </div>
  54. <a href="#close-modal" rel="modal:close" id="exchangePop_close" class="close-modal">Close</a>
  55. </div>
  56. <!-- //교환상품 옵션변경 팝업 -->
  57. <!-- 회수조회 팝업 -->
  58. <div class="modal fade reclaim_pop" id="reclaimPop" tabindex="-1" role="dialog" aria-labelledby="reclaimLabel" aria-hidden="true" style="display: none;">
  59. <div class="modal-dialog" role="document">
  60. <div class="modal-content">
  61. <!-- 회수조회 팝업 내용 -->
  62. </div>
  63. </div>
  64. <a href="#close-modal" rel="modal:close" id="reclaimPop_close" class="close-modal">Close</a>
  65. </div>
  66. <!-- //회수조회 팝업 -->
  67. <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
  68. <script th:src="@{'/biz/mypage.js?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" src="/biz/mypage.js"></script>
  69. <script th:inline="javascript">
  70. /*<![CDATA[*/
  71. /*]]>*/
  72. </script>
  73. </body>
  74. </html>