|
|
@@ -340,10 +340,10 @@
|
|
|
<div style="height:4rem"></div><!-- 여백용 html -->
|
|
|
<th:block th:utext="${#strings.unescapeJava(#strings.escapeJava(goodsInfo.goodsTopDesc))}"></th:block>
|
|
|
</div>
|
|
|
- <th:block th:if="${goodsInfo.tobeFormYn == 'N' and goodsInfo.goodsDesc != null and !goodsInfo.goodsDesc.empty}" >
|
|
|
+ <th:block th:if="${goodsInfo.tobeFormYn == 'N' and goodsInfo.goodsDesc != null and !goodsInfo.goodsDesc.empty}" >
|
|
|
+ <div style="height:4rem"></div><!-- 여백용 html -->
|
|
|
<div class="mdhtml_box" >
|
|
|
- <div style="height:4rem"></div><!-- 여백용 html -->
|
|
|
- <div id="goodsDescHtml"></div>
|
|
|
+ <div id="goodsDescHtml"></div>
|
|
|
</div>
|
|
|
</th:block>
|
|
|
|
|
|
@@ -434,9 +434,11 @@
|
|
|
<th:block th:if="${goodsInfo.goodsType == 'G056_S' and goodsComposeList != null and !goodsComposeList.empty}">
|
|
|
<th:block th:each="goodsCompose, status : ${goodsComposeList}">
|
|
|
<th:block th:if="${ goodsCompose.tobeFormYn == 'N' and goodsCompose.goodsDesc != null and !goodsCompose.goodsDesc.empty}" >
|
|
|
+ <div style="height:4rem"></div><!-- 여백용 html -->
|
|
|
<div class="mdhtml_box" >
|
|
|
- <div style="height:4rem"></div><!-- 여백용 html -->
|
|
|
- <div th:id="${'goodsDescHtml_' + goodsCompose.compsGoodsCd}"></div>
|
|
|
+ <div class="mdhtml_box" >
|
|
|
+ <div th:id="${'goodsDescHtml_' + goodsCompose.compsGoodsCd}"></div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</th:block>
|
|
|
|
|
|
@@ -2886,6 +2888,18 @@
|
|
|
$('.modal.photo_comment_popup .pop_detail').toggleClass('active');
|
|
|
});
|
|
|
|
|
|
+ // 상품상세 asis html 이지미 경로 수정
|
|
|
+ $(".pd_descrp .cont_body").find('img').each(function() {
|
|
|
+ let tmpImgSrc = $(this).attr('src');
|
|
|
+ if (tmpImgSrc.indexOf('Upload') == 1 ){ // /Upload
|
|
|
+ $(this).attr('src' , tmpImgSrc.replace('/Upload', _imgUrl+"/Local"));
|
|
|
+ }
|
|
|
+
|
|
|
+ if (tmpImgSrc.indexOf('/Upload/Local') > 0 ){ // /Upload
|
|
|
+ $(this).attr('src' , tmpImgSrc.replace('/Upload/Local', "/Local"));
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
});
|
|
|
|
|
|
|
|
|
@@ -2927,19 +2941,7 @@
|
|
|
let vh = window.innerHeight * 0.01;
|
|
|
document.documentElement.style.setProperty('--vh', `${vh}px`);
|
|
|
|
|
|
- // 상품상세 asis html 이지미 경로 수정
|
|
|
- window.onload = function(){
|
|
|
- $(".pd_descrp .cont_body").find('img').each(function() {
|
|
|
- let tmpImgSrc = $(this).attr('src');
|
|
|
- if (tmpImgSrc.indexOf('/Upload/Local') > 0 ){ // /Upload
|
|
|
- $(this).attr('src' , tmpImgSrc.replace('/Upload/Local', "/Local"));
|
|
|
- }else if (tmpImgSrc.indexOf('Upload') == 1 ){ // /Upload
|
|
|
- $(this).attr('src' , tmpImgSrc.replace('/Upload', _imgUrl+"/Local"));
|
|
|
- }
|
|
|
-
|
|
|
- });
|
|
|
-
|
|
|
- };
|
|
|
+
|
|
|
|
|
|
let goodsVideoList = [[${goodsVideoList}]];
|
|
|
let videoFlag = false;
|