CallcenterLayoutWeb.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. <!-- CONTENT AREA -->
  17. <th:block layout:fragment="content"></th:block>
  18. <!-- // CONTENT AREA -->
  19. <!-- Footer -->
  20. <footer id="footer" th:replace="~{web/common/fragments/FooterWeb :: footer}"></footer>
  21. <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
  22. <!-- <th:block th:replace="~{web/common/fragments/MarketingScripts :: mscripts}"></th:block> -->
  23. <script th:inline="javascript">
  24. /*<![CDATA[*/
  25. var fnSetCallcenterLnbList = function(lnbLvl) {
  26. let tag = '';
  27. tag += '<li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_FAQ);"' + (lnbLvl == 1 ? ' class="on"' : '') + '>FAQ</a></li>\n';
  28. tag += '<li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_ONETOONE_QNA);"' + (lnbLvl == 2 ? ' class="on"' : '') + '>1:1문의</a></li>\n';
  29. tag += '<li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_GOODS_QNA);"' + (lnbLvl == 3 ? ' class="on"' : '') + '>상품문의</a></li>\n';
  30. tag += '<li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_NOTICE);"' + (lnbLvl == 4 ? ' class="on"' : '') + '>공지</a></li>\n';
  31. tag += '</ul>';
  32. $('#callcenterLnbList').html();
  33. }
  34. $(document).ready(function() {
  35. });
  36. /*]]>*/
  37. </script>
  38. </body>
  39. </html>