|
|
@@ -38,7 +38,7 @@
|
|
|
<input type="hidden" name="selfGoodsYn" th:value="${goodsInfo.selfGoodsYn}"/>
|
|
|
<main role="" id="" class="container pd" th:with="imgGoodsUrl=${@environment.getProperty('upload.goods.view')}, uxImgUrl=${@environment.getProperty('domain.uximage')}, imgUrl=${@environment.getProperty('upload.image.view')}">
|
|
|
<!-- ★ 컨텐츠 시작 -->
|
|
|
-
|
|
|
+<script src="//developers.kakao.com/sdk/js/kakao.min.js"></script>
|
|
|
<section class="pd_detail">
|
|
|
<!-- 210409_ 구조변경 : .pd_info, .pd_info1 추가 -->
|
|
|
<div class="pd_info">
|
|
|
@@ -1049,7 +1049,7 @@
|
|
|
<div class="share_like">
|
|
|
<button type="button" class="share">공유하기</button>
|
|
|
<!-- <th:block th:include="~{web/goods/GoodsIncludeFormMob :: goodsSnsForm}"></th:block> -->
|
|
|
- <button type="button" class="like" th:classappend="${goodsInfo.wishYn == 'Y'}? 'active' : ''"
|
|
|
+ <button type="button" class="itemLike" th:classappend="${goodsInfo.wishYn == 'Y'}? 'active' : ''"
|
|
|
onclick="cfnPutWishList(this);"
|
|
|
th:attr="goodsCd=${params.goodsCd}, ithrCd=${params.ithrCd}, contentsLoc=${params.contentsLoc}, planDtlSq=${params.planDtlSq}">위시리스트</button>
|
|
|
</div>
|
|
|
@@ -1061,6 +1061,24 @@
|
|
|
<button type="button" class="cantbuying" style="display:block;">SOLD OUT</button>
|
|
|
</th:block>
|
|
|
</div>
|
|
|
+ <!-- (공통) 공유팝업 -->
|
|
|
+ <div class="modal fade" id="tglShare" tabindex="-1" role="dialog" aria-labelledby="aModalLabel" aria-hidden="true">
|
|
|
+ <div class="modal-dialog" role="document">
|
|
|
+ <div class="modal-content">
|
|
|
+ <div class="modal-header">
|
|
|
+ <h5 class="modal-title" id="aModalLabel">공유하기</h5>
|
|
|
+ </div>
|
|
|
+ <th:block th:include="~{mob/goods/GoodsIncludeFormMob :: goodsSnsForm}"></th:block>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <script>
|
|
|
+ // 공유팝업
|
|
|
+ $('.product_floormenu .share').click(function(e){
|
|
|
+ e.preventDefault();
|
|
|
+ $('#tglShare').modal("show");
|
|
|
+ });
|
|
|
+ </script>
|
|
|
</div>
|
|
|
<!-- //바닥메뉴 -->
|
|
|
|