| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!DOCTYPE html>
- <html lang="ko" xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : GoodsIncludeFormWeb.html
- * @desc : 상품상세 Include Page - 공용
- *============================================================================
- * Wivismall
- * Copyright(C) 2020 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.03.02 eskim 최초 작성
- *******************************************************************************
- -->
- <!-- 상품상세 네비게이션 -->
- <th:block th:fragment="goodsNaviForm">
- <div class="breadcrumb">
- <ul>
- <li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_MAIN);">홈</a></li>
- <th:block th:if="${goodsNavigation != null}">
- <th:block th:if="${goodsNavigation.formalGb == '20'}">
- <li><a href="javascript:void(0);" onclick="cfnGoToOutletMain('300')" >아울렛</a></li>
- <li th:if="${goodsNavigation.cate1No}">
- <a href="javascript:void(0);" th:onclick="cfnGoToCategoryGoodsList('','',[[${goodsNavigation.formalGb}]],[[${goodsNavigation.cate1No}]])" th:text="${goodsNavigation.cate1Nm}">cate</a>
- </li>
- </th:block>
- <th:block th:unless="${goodsNavigation.formalGb == '20'}">
- <li th:if="${goodsNavigation.cate1No}">
- <a href="javascript:void(0);" th:onclick="cfnGoToCategoryMain([[${goodsNavigation.cateGb}]],[[${goodsNavigation.cate1No}]])"
- th:text="${goodsNavigation.cate1Nm}">cate</a>
- </li>
- </th:block>
- <li th:if="${goodsNavigation.cate2No}">
- <th:block th:if="${goodsNavigation.cate3No}">
- <a href="javascript:void(0);" th:onclick="cfnGoToCategoryGoodsList('','',[[${goodsNavigation.formalGb}]],[[${goodsNavigation.cate1No}]], [[${goodsNavigation.cate2No}]])"
- th:text="${goodsNavigation.cate2Nm}">cate</a>
- </th:block>
- <th:block th:unless="${goodsNavigation.cate3No}"><strong th:text="${goodsNavigation.cate2Nm}">cate</strong></th:block>
- </li>
- <li th:if="${goodsNavigation.cate3No }">
- <th:block th:if="${goodsNavigation.cate4No}">
- <a href="javascript:void(0);" th:onclick="cfnGoToCategoryGoodsList('','',[[${goodsNavigation.formalGb}]],[[${goodsNavigation.cate1No}]], [[${goodsNavigation.cate2No}]], [[${goodsNavigation.cate3No}]])"
- th:text="${goodsNavigation.cate3Nm}">cate</a>
- </th:block>
- <th:block th:unless="${goodsNavigation.cate4No}"><strong th:text="${goodsNavigation.cate3Nm}">cate</strong></th:block>
- </li>
- <li th:if="${goodsNavigation.cate4No }">
- <th:block th:if="${goodsNavigation.cate5No}">
- <a href="javascript:void(0);" th:onclick="cfnGoToCategoryGoodsList('','',[[${goodsNavigation.formalGb}]],[[${goodsNavigation.cate1No}]], [[${goodsNavigation.cate2No}]], [[${goodsNavigation.cate3No}]], [[${goodsNavigation.cate4No}]])"
- th:text="${goodsNavigation.cate4Nm}">cate</a>
- </th:block>
- <th:block th:unless="${goodsNavigation.cate5No}"><strong th:text="${goodsNavigation.cate4Nm}">cate</strong></th:block>
- </li>
- <li th:if="${goodsNavigation.cate5No}">
- <th:block th:text="${goodsNavigation.cate5Nm}">cate</th:block>
- </li>
- </th:block>
- </ul>
- </div>
- </th:block>
- <!-- 상품상세 SNS -->
- <th:block th:fragment="goodsSnsForm" >
- <div class="sns_list" th:with="pastelUrl=${@environment.getProperty('domain.pastel')}, goodsView=${@environment.getProperty('upload.goods.view')}">
- <ul>
- <li><a href="javascript:void(0);" th:attr="onclick=|sendSns('kakaostory', '${pastelUrl+'/goods/detail/form?goodsCd='+goodsInfo.goodsCd}', '${goodsInfo.goodsTnmFull}', '', '');|"></a></li>
- <li><a href="javascript:void(0);" th:attr="onclick=|sendSns('facebook', '${pastelUrl+'/goods/detail/form?goodsCd='+goodsInfo.goodsCd}', '${goodsInfo.goodsTnmFull}', '', '');|"></a></li>
- <li><a href="javascript:void(0);" th:attr="onclick=|sendSns('twitter', '${pastelUrl+'/goods/detail/form?goodsCd='+goodsInfo.goodsCd}', '${goodsInfo.goodsTnmFull+ '#파스텔몰'}', '', '');|"></a></li>
- <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>
- <li><a href="javascript:void(0)" class="btn_copy"></a></li>
- </ul>
- </div>
- </th:block>
- </html>
|