| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
- <head th:replace="~{web/common/fragments/HeadWeb :: head}"></head>
- <body>
- <div class="skipComment">
- <a href="#content">본문 바로가기</a>
- <a href="#gnb">주메뉴 바로가기</a>
- <a href="#footer">하단메뉴 바로가기</a>
- </div>
-
- <th:block th:replace="~{web/common/fragments/VariablesWeb :: variables}"></th:block>
- <!-- GNB -->
- <header id="header" th:replace="~{web/common/fragments/GnbWeb :: gnb}"></header>
- <!--// GNB -->
- <div id="container" class="container my">
- <div class="breadcrumb">
- <ul id="location">
- <li class="bread_home"><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_MAIN);">홈</a></li>
- <li class="bread_2depth"><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_MYPAGE);">마이페이지</a></li>
- </ul>
- </div>
- <div class="wrap">
- <!-- CONTENT AREA -->
- <th:block layout:fragment="content"></th:block>
- <!-- // CONTENT AREA -->
- <form id="createReview" name="createReview" th:action="@{'/mypage/review/create/form'}" th:method="post">
- <input type="hidden" name="ordNo"/>
- <input type="hidden" name="ordDtlNo"/>
- <input type="hidden" name="goodsCd"/>
- <input type="hidden" name="reviewStat"/>
- </form>
- <form id="addPaymentForm" name="addPaymentForm" th:action="@{'/order/addPaymentForm'}" th:method="post">
- <input type="hidden" name="ordNo"/>
- <input type="hidden" name="ordChgSq"/>
- </form>
- <form id="deliveryInfoForm" name="deliveryInfoForm" th:action="@{'/mypage/delivery/info/form'}" th:method="post">
- <input type="hidden" name="ordNo"/>
- <input type="hidden" name="ordDtlNo"/>
- <input type="hidden" name="shipCompCd"/>
- <input type="hidden" name="invoiceNo"/>
- </form>
- </div>
- </div>
- <!-- Footer -->
- <footer id="footer" th:replace="~{web/common/fragments/FooterWeb :: footer}"></footer>
- <!--교환상품 옵션변경 팝업 -->
- <div class="modal fade exchange_pop" id="exchangePop" tabindex="-1" role="dialog" aria-labelledby="exchangeLabel" aria-hidden="true">
- <div class="modal-dialog" role="document">
- <div class="modal-content">
- <!-- 교환상품 옵션변경 팝업 내용 -->
- </div>
- </div>
- <a href="#close-modal" rel="modal:close" id="exchangePop_close" class="close-modal">Close</a>
- </div>
- <!-- //교환상품 옵션변경 팝업 -->
- <!-- 회수조회 팝업 -->
- <div class="modal fade reclaim_pop" id="reclaimPop" tabindex="-1" role="dialog" aria-labelledby="reclaimLabel" aria-hidden="true" style="display: none;">
- <div class="modal-dialog" role="document">
- <div class="modal-content">
- <!-- 회수조회 팝업 내용 -->
- </div>
- </div>
- <a href="#close-modal" rel="modal:close" id="reclaimPop_close" class="close-modal">Close</a>
- </div>
- <!-- //회수조회 팝업 -->
- <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
- <script th:src="@{'/biz/mypage.js?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" src="/biz/mypage.js"></script>
- <script th:inline="javascript">
- /*<![CDATA[*/
- /*]]>*/
- </script>
- </body>
- </html>
|