MypageLayoutWeb.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. <!-- <li class="bread_3depth">주문확인/배송조회</li>-->
  22. </ul>
  23. </div>
  24. <div class="wrap">
  25. <div class="content">
  26. <div class="cont_head" style="display: none;">
  27. CONT-HEAD
  28. <style>
  29. .container .wrap .content {max-width:1460px;}
  30. </style>
  31. <div class="tit">my_center</div>
  32. <div class="tit my_tit">my_tit</div>
  33. </div>
  34. <div class="cont_body mypage">
  35. <!-- CONT-BODY -->
  36. <div class="my_lnb">
  37. <div class="lnb_tit">
  38. <h2>마이페이지</h2>
  39. </div>
  40. <div class="lnb_list">
  41. <ul id="mypageLnbList">
  42. <li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_ORDER_LIST);">주문확인/배송조회</a></li>
  43. <li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_CRS_LIST);">취소/반품/환불내역</a></li>
  44. <li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_RESTOCK);">재입고 알림 내역</a></li>
  45. <li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_REVIEW);">리뷰</a></li>
  46. <li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_DELIVERY_ADDR);">배송지 관리</a></li>
  47. <li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_WISHLIST);">위시리스트</a></li>
  48. <li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_CUSTOMER);">내정보 관리</a></li>
  49. <li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_SECEDE);">회원 탈퇴</a></li>
  50. </ul>
  51. </div>
  52. </div>
  53. <!-- CONTENT AREA -->
  54. <th:block layout:fragment="content"></th:block>
  55. <!-- // CONTENT AREA -->
  56. <!-- // CONT-BODY -->
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. <!-- Footer -->
  62. <footer id="footer" th:replace="~{web/common/fragments/FooterWeb :: footer}"></footer>
  63. <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
  64. <!-- <th:block th:replace="~{web/common/fragments/MarketingScripts :: mscripts}"></th:block> -->
  65. <script th:inline="javascript">
  66. /*<![CDATA[*/
  67. var fnSetMypageLnbList = function(lnbLvl) {
  68. let tag = '';
  69. tag += '<li><a href="javascript:void(0);" onClick="cfnGoToPage(_PAGE_ORDER_LIST);"' + (lnbLvl == 1 ? ' class="on"' : '') + '>주문확인/배송조회</a></li>\n';
  70. tag += '<li><a href="javascript:void(0);" onClick="cfnGoToPage(_PAGE_CRS_LIST);"' + (lnbLvl == 2 ? ' class="on"' : '') + '>취소/반품/환불내역</a></li>\n';
  71. tag += '<li><a href="javascript:void(0);" onClick="cfnGoToPage(_PAGE_RESTOCK);"' + (lnbLvl == 3 ? ' class="on"' : '') + '>재입고 알림 내역</a></li>\n';
  72. tag += '<li><a href="javascript:void(0);" onClick="cfnGoToPage(_PAGE_REVIEW);"' + (lnbLvl == 4 ? ' class="on"' : '') + '>리뷰</a></li>\n';
  73. tag += '<li><a href="javascript:void(0);" onClick="cfnGoToPage(_PAGE_DELIVERY_ADDR);"' + (lnbLvl == 5 ? ' class="on"' : '') + '>배송지 관리</a></li>\n';
  74. tag += '<li><a href="javascript:void(0);" onClick="cfnGoToPage(_PAGE_WISHLIST);"' + (lnbLvl == 6 ? ' class="on"' : '') + '>위시리스트</a></li>\n';
  75. tag += '<li><a href="javascript:void(0);" onClick="cfnGoToPage(_PAGE_CUSTOMER);"' + (lnbLvl == 7 ? ' class="on"' : '') + '>내정보 관리</a></li>\n';
  76. tag += '<li><a href="javascript:void(0);" onClick="cfnGoToPage(_PAGE_SECEDE);"' + (lnbLvl == 8 ? ' class="on"' : '') + '>회원 탈퇴</a></li>\n';
  77. tag += '</ul>';
  78. $('#mypageLnbList').html(tag);
  79. }
  80. var fnSetMypageLocation = function(depth3, depth3Link, depth4) {
  81. let tag = '';
  82. if (gagajf.isNull(depth4)) {
  83. tag += '<li class="bread_3depth">' + depth3 + '</li>'
  84. } else {
  85. tag += '<li className="bread_3depth"><a href="javascript:void(0);" onClick="cfnGoToPage(' + depth3Link + ');">' + depth3 + '</a></li>';
  86. tag += '<li class="bread_3depth">' + depth4 + '</li>'
  87. }
  88. $('#location').append(tag);
  89. }
  90. $(document).ready(function() {
  91. });
  92. /*]]>*/
  93. </script>
  94. </body>
  95. </html>