| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : GoodsQnaFormWeb.html
- * @desc : 상품 문의 팝업
- *============================================================================
- * STYLE24
- * Copyright(C) 2020 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.03.05 eskim 최초 작성
- *******************************************************************************
- -->
- <div class="full_popup_wrap">
- <h5 class="sr-only">상품문의</h5>
- <div class="btn_close">
- <a href="javascript:void(0)" onclick="cfCloseFullLayer('layer_goods_qna');">닫기버튼</a>
- </div>
- <div class="full_pop_header">
- <!-- 해당 상품 -->
- <div class="item_prod" th:with="imgGoodsUrl=${@environment.getProperty('upload.goods.view')}, uxImgUrl=${@environment.getProperty('domain.uximage')}">
- <div class="item_state">
- <a href="javascript:void(0);" class="itemLink">
- <div class="itemPic">
- <img alt="" class="vLHTC pd_img" th:src="${imgGoodsUrl+'/'+goodsInfo.sysImgNm+'?RS=80'}" th:onerror="'this.src=\''+@{${uxImgUrl}+ '/images/pc/thumb/bg_item_none.png'}+'\';'">
- </div>
- <p class="itemBrand" th:text="${goodsInfo.brandGroupNm}">NBA 키즈</p>
- <div class="itemName" th:text="${goodsInfo.goodsFullNm}">유니 삼단블록 플리스 집업 유니 삼단블록 플리스 집업 유니 삼단블록 플리스 집업</div>
- <p class="itemPrice"><th:block th:text="${#numbers.formatInteger(goodsInfo.currPrice, 0,'COMMA')}"> 134,100</th:block>
- <span class="itemPrice_original" th:if="${goodsInfo.listPrice > goodsInfo.currPrice}" th:text="${#numbers.formatInteger(goodsInfo.listPrice, 0,'COMMA')}">149,000</span>
- <span class="itemPercent" th:if="${goodsInfo.dcRate > 0}" th:text="|${#numbers.formatDecimal(goodsInfo.dcRate,0,0)}%|">30%</span>
- </p>
- </a>
- </div>
- </div>
- <!-- //해당 상품 -->
- </div>
- <div class="full_pop_container" id="goodsDealQna">
- </div>
- </div>
- <script th:inline="javascript">
- /*<![CDATA[*/
- /* // 구성 상품 상세 문의
- var fnGoodsDetailQna = function(params) {
- gagajf.ajaxSubmit("/goods/detail/qna/frame", "html", "goodsDealQna", params);
- }
-
- $(document).ready( function() {
- // 상품평정보
- var params = new Object();
- let goodsCd = [[${goodsInfo.goodsCd}]]
- params.goodsCd = goodsCd;
- fnGoodsDetailQna(params); // ajax html
-
- }); */
- /*]]>*/
- </script>
- </html>
|