| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
- <head th:replace="~{mob/common/fragments/HeadMob :: head}"></head>
- <body>
- <th:block th:replace="~{web/common/fragments/VariablesWeb :: variables}"></th:block>
- <div class="app">
- <!-- GNB -->
- <th:block th:replace="~{mob/common/fragments/GnbSubNoMemberMob :: gnb}"></th:block>
- <!--// GNB -->
- <!-- CONTENT AREA -->
- <th:block layout:fragment="content"></th:block>
- <form id="addPaymentForm" name="addPaymentForm" th:action="@{'/order/addPaymentForm'}" th:method="post">
- <input type="hidden" name="ordNo"/>
- <input type="hidden" name="ordChgSq"/>
- </form>
- <!-- // CONTENT AREA -->
- <!-- Footer -->
- <th:block th:replace="~{mob/common/fragments/FooterMob :: footer}"></th:block>
-
- <!--교환상품 옵션변경 팝업 -->
- <div class="modal pop_full optionChangePop" id="exchangePop" tabindex="-1" role="dialog" aria-labelledby="optionChangeLabel" 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="~{mob/common/fragments/ScriptsMob :: 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>
- </div>
-
- </body>
- </html>
|