NoMemberLayoutWeb.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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="fnGoToNoMemberOrderList()">마이페이지</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="noMemberOrderListForm" name="noMemberOrderListForm" th:action="@{'/noMember/order/list/form'}" th:method="post">
  28. <input type="hidden" name="ordNo" th:value="${ordNo}"/>
  29. <input type="hidden" name="ordNm" th:value="${ordNm}"/>
  30. <input type="hidden" name="ordPhnno" th:value="${ordPhnno}"/>
  31. </form>
  32. <form id="noMemberCreListForm" name="noMemberCreListForm" th:action="@{'/noMember/cre/list/form'}" th:method="post">
  33. <input type="hidden" name="ordNo" th:value="${ordNo}"/>
  34. <input type="hidden" name="ordNm" th:value="${ordNm}"/>
  35. <input type="hidden" name="ordPhnno" th:value="${ordPhnno}"/>
  36. </form>
  37. <form id="exchangeForm" name="exchangeForm" th:action="@{'/noMember/exchange/form'}" th:method="post">
  38. <input type="hidden" name="ordNo" th:value="${ordNo}"/>
  39. <input type="hidden" name="ordNm" th:value="${ordNm}"/>
  40. <input type="hidden" name="ordPhnno" th:value="${ordPhnno}"/>
  41. <input type="hidden" name="ordDtlNo"/>
  42. <input type="hidden" name="delvFeeCd"/>
  43. </form>
  44. <form id="returnForm" name="returnForm" th:action="@{'/noMember/return/form'}" th:method="post">
  45. <input type="hidden" name="ordNo" th:value="${ordNo}"/>
  46. <input type="hidden" name="ordNm" th:value="${ordNm}"/>
  47. <input type="hidden" name="ordPhnno" th:value="${ordPhnno}"/>
  48. <input type="hidden" name="ordDtlNo"/>
  49. <input type="hidden" name="delvFeeCd"/>
  50. </form>
  51. <form id="cancelForm" name="cancelForm" th:action="@{'/noMember/cancel/form'}" th:method="post">
  52. <input type="hidden" name="ordNo" th:value="${ordNo}"/>
  53. <input type="hidden" name="ordNm" th:value="${ordNm}"/>
  54. <input type="hidden" name="ordPhnno" th:value="${ordPhnno}"/>
  55. <input type="hidden" name="ordDtlNo"/>
  56. <input type="hidden" name="delvFeeCd"/>
  57. </form>
  58. </div>
  59. </div>
  60. <!-- Footer -->
  61. <footer id="footer" th:replace="~{web/common/fragments/FooterWeb :: footer}"></footer>
  62. <!--교환상품 옵션변경 팝업 -->
  63. <div class="modal fade exchange_pop" id="exchangePop" tabindex="-1" role="dialog" aria-labelledby="exchangeLabel" aria-hidden="true">
  64. <div class="modal-dialog" role="document">
  65. <div class="modal-content">
  66. <!--교환상품 옵션변경 팝업 내용 -->
  67. </div>
  68. </div>
  69. <a href="#close-modal" rel="modal:close" id="exchangePop_close" class="close-modal">Close</a>
  70. </div>
  71. <!-- //교환상품 옵션변경 팝업 -->
  72. <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
  73. <script th:src="@{'/biz/mypage.js?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" src="/biz/mypage.js"></script>
  74. <script th:inline="javascript">
  75. /*<![CDATA[*/
  76. /*]]>*/
  77. </script>
  78. </body>
  79. </html>