GoodsIncludeFormWeb.html 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <!DOCTYPE html>
  2. <html lang="ko" xmlns:th="http://www.thymeleaf.org">
  3. <!--
  4. *******************************************************************************
  5. * @source : GoodsIncludeFormWeb.html
  6. * @desc : 상품상세 Include Page - 공용
  7. *============================================================================
  8. * Wivismall
  9. * Copyright(C) 2020 TSIT, All rights reserved.
  10. *============================================================================
  11. * VER DATE AUTHOR DESCRIPTION
  12. * === =========== ========== =============================================
  13. * 1.0 2021.03.02 eskim 최초 작성
  14. *******************************************************************************
  15. -->
  16. <!-- 상품상세 네비게이션 -->
  17. <th:block th:fragment="goodsNaviForm">
  18. <div class="breadcrumb">
  19. <ul>
  20. <li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_MAIN);">홈</a></li>
  21. <th:block th:if="${goodsNavigation != null}">
  22. <th:block th:if="${goodsNavigation.formalGb == '20'}">
  23. <li><a href="javascript:void(0);" onclick="cfnGoToOutletMain('300')" >아울렛</a></li>
  24. <li th:if="${goodsNavigation.cate1No}">
  25. <a href="javascript:void(0);" th:onclick="cfnGoToCategoryGoodsList('','',[[${goodsNavigation.formalGb}]],[[${goodsNavigation.cate1No}]])" th:text="${goodsNavigation.cate1Nm}">cate</a>
  26. </li>
  27. </th:block>
  28. <th:block th:unless="${goodsNavigation.formalGb == '20'}">
  29. <li th:if="${goodsNavigation.cate1No}">
  30. <a href="javascript:void(0);" th:onclick="cfnGoToCategoryMain([[${goodsNavigation.cateGb}]],[[${goodsNavigation.cate1No}]])"
  31. th:text="${goodsNavigation.cate1Nm}">cate</a>
  32. </li>
  33. </th:block>
  34. <li th:if="${goodsNavigation.cate2No}">
  35. <th:block th:if="${goodsNavigation.cate3No}">
  36. <a href="javascript:void(0);" th:onclick="cfnGoToCategoryGoodsList('','',[[${goodsNavigation.formalGb}]],[[${goodsNavigation.cate1No}]], [[${goodsNavigation.cate2No}]])"
  37. th:text="${goodsNavigation.cate2Nm}">cate</a>
  38. </th:block>
  39. <th:block th:unless="${goodsNavigation.cate3No}"><strong th:text="${goodsNavigation.cate2Nm}">cate</strong></th:block>
  40. </li>
  41. <li th:if="${goodsNavigation.cate3No }">
  42. <th:block th:if="${goodsNavigation.cate4No}">
  43. <a href="javascript:void(0);" th:onclick="cfnGoToCategoryGoodsList('','',[[${goodsNavigation.formalGb}]],[[${goodsNavigation.cate1No}]], [[${goodsNavigation.cate2No}]], [[${goodsNavigation.cate3No}]])"
  44. th:text="${goodsNavigation.cate3Nm}">cate</a>
  45. </th:block>
  46. <th:block th:unless="${goodsNavigation.cate4No}"><strong th:text="${goodsNavigation.cate3Nm}">cate</strong></th:block>
  47. </li>
  48. <li th:if="${goodsNavigation.cate4No }">
  49. <th:block th:if="${goodsNavigation.cate5No}">
  50. <a href="javascript:void(0);" th:onclick="cfnGoToCategoryGoodsList('','',[[${goodsNavigation.formalGb}]],[[${goodsNavigation.cate1No}]], [[${goodsNavigation.cate2No}]], [[${goodsNavigation.cate3No}]], [[${goodsNavigation.cate4No}]])"
  51. th:text="${goodsNavigation.cate4Nm}">cate</a>
  52. </th:block>
  53. <th:block th:unless="${goodsNavigation.cate5No}"><strong th:text="${goodsNavigation.cate4Nm}">cate</strong></th:block>
  54. </li>
  55. <li th:if="${goodsNavigation.cate5No}">
  56. <th:block th:text="${goodsNavigation.cate5Nm}">cate</th:block>
  57. </li>
  58. </th:block>
  59. </ul>
  60. </div>
  61. </th:block>
  62. <!-- 상품상세 SNS -->
  63. <th:block th:fragment="goodsSnsForm" >
  64. <div class="sns_list" th:with="pastelUrl=${@environment.getProperty('domain.pastel')}, goodsView=${@environment.getProperty('upload.goods.view')}">
  65. <ul>
  66. <li><a href="javascript:void(0);" th:attr="onclick=|sendSns('kakaostory', '${pastelUrl+'/goods/detail/form?goodsCd='+goodsInfo.goodsCd}', '${goodsInfo.goodsTnmFull}', '', '');|"></a></li>
  67. <li><a href="javascript:void(0);" th:attr="onclick=|sendSns('facebook', '${pastelUrl+'/goods/detail/form?goodsCd='+goodsInfo.goodsCd}', '${goodsInfo.goodsTnmFull}', '', '');|"></a></li>
  68. <li><a href="javascript:void(0);" th:attr="onclick=|sendSns('twitter', '${pastelUrl+'/goods/detail/form?goodsCd='+goodsInfo.goodsCd}', '${goodsInfo.goodsTnmFull+ '#파스텔몰'}', '', '');|"></a></li>
  69. <li><a href="javascript:void(0);" th:attr="onclick=|sendSns('pinterest', '${pastelUrl+'/goods/detail/form?goodsCd='+goodsInfo.goodsCd}', '${goodsInfo.goodsTnmFull}', '${goodsInfo.imgType == 'A' ? goodsView + goodsInfo.imgPath1 : goodsInfo.imgPath1}', '${goodsInfo.goodsTnmFull}');|"></a></li>
  70. <li><a href="javascript:void(0)" class="btn_copy"></a></li>
  71. </ul>
  72. </div>
  73. </th:block>
  74. </html>