| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!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="fnGoToNoMemberOrderList()">마이페이지</a></li>
- </ul>
- </div>
- <div class="wrap">
- <!-- CONTENT AREA -->
- <th:block layout:fragment="content"></th:block>
- <!-- // CONTENT AREA -->
- <form id="noMemberOrderListForm" name="noMemberOrderListForm" th:action="@{'/noMember/order/list/form'}" th:method="post">
- <input type="hidden" name="ordNo" th:value="${ordNo}"/>
- <input type="hidden" name="ordNm" th:value="${ordNm}"/>
- <input type="hidden" name="ordPhnno" th:value="${ordPhnno}"/>
- </form>
- <form id="noMemberCreListForm" name="noMemberCreListForm" th:action="@{'/noMember/cre/list/form'}" th:method="post">
- <input type="hidden" name="ordNo" th:value="${ordNo}"/>
- <input type="hidden" name="ordNm" th:value="${ordNm}"/>
- <input type="hidden" name="ordPhnno" th:value="${ordPhnno}"/>
- </form>
- <form id="exchangeForm" name="exchangeForm" th:action="@{'/noMember/exchange/form'}" th:method="post">
- <input type="hidden" name="ordNo" th:value="${ordNo}"/>
- <input type="hidden" name="ordNm" th:value="${ordNm}"/>
- <input type="hidden" name="ordPhnno" th:value="${ordPhnno}"/>
- <input type="hidden" name="ordDtlNo"/>
- <input type="hidden" name="delvFeeCd"/>
- </form>
- <form id="returnForm" name="returnForm" th:action="@{'/noMember/return/form'}" th:method="post">
- <input type="hidden" name="ordNo" th:value="${ordNo}"/>
- <input type="hidden" name="ordNm" th:value="${ordNm}"/>
- <input type="hidden" name="ordPhnno" th:value="${ordPhnno}"/>
- <input type="hidden" name="ordDtlNo"/>
- <input type="hidden" name="delvFeeCd"/>
- </form>
- <form id="cancelForm" name="cancelForm" th:action="@{'/noMember/cancel/form'}" th:method="post">
- <input type="hidden" name="ordNo" th:value="${ordNo}"/>
- <input type="hidden" name="ordNm" th:value="${ordNm}"/>
- <input type="hidden" name="ordPhnno" th:value="${ordPhnno}"/>
- <input type="hidden" name="ordDtlNo"/>
- <input type="hidden" name="delvFeeCd"/>
- </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>
- <!-- //교환상품 옵션변경 팝업 -->
- <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>
|