|
@@ -349,18 +349,22 @@ public class TsaShoplinkerService {
|
|
|
|
|
|
|
|
// 1) 상세내용 - 상품설명
|
|
// 1) 상세내용 - 상품설명
|
|
|
htmlDesc = "<div class=\"st_descrp_box\" style=\"max-height:1100px; overflow:hidden; text-align: left; color:#222;\">";
|
|
htmlDesc = "<div class=\"st_descrp_box\" style=\"max-height:1100px; overflow:hidden; text-align: left; color:#222;\">";
|
|
|
- htmlDesc += "<div class=\"st_desc_simple\" style=\"position:relative; margin-top:0px; margin-left:auto; margin-right:auto;\">";
|
|
|
|
|
- htmlDesc += "<span class=\"st_tit_desc\" style=\"display:block; margin-bottom:10px; font-size:18px; font-weight:500; letter-spacing:-0.025em;\">"+goodsMap.getDetailDescNew10()+"</span>";
|
|
|
|
|
- htmlDesc += "<span class=\"st_ptxt01\" style=\"font-size:16px;font-weight:200;line-height:1.5;word-break:keep-all;color:#666666;\">";
|
|
|
|
|
- htmlDesc += goodsMap.getDetailDescNew20();
|
|
|
|
|
- htmlDesc += "</span>";
|
|
|
|
|
- htmlDesc += "</div>";
|
|
|
|
|
- htmlDesc += "<div class=\"st_desc_character\" style=\"position:relative; margin-top:40px; margin-left:auto; margin-right:auto;\">";
|
|
|
|
|
- htmlDesc += "<span class=\"st_tit_desc\" style=\"display:block; margin-bottom:10px; font-size:18px; font-weight:500; letter-spacing:-0.025em;\">상품특징</span>";
|
|
|
|
|
- htmlDesc += "<span class=\"st_ptxt01\" style=\"font-size:16px;font-weight:200;line-height:1.5;word-break:keep-all;color:#666666;\">";
|
|
|
|
|
- htmlDesc += goodsMap.getDetailDescNew30();
|
|
|
|
|
- htmlDesc += "</span>";
|
|
|
|
|
- htmlDesc += "</div>";
|
|
|
|
|
|
|
+ if( null != goodsMap.getDetailDescNew20()) {
|
|
|
|
|
+ htmlDesc += "<div class=\"st_desc_simple\" style=\"position:relative; margin-top:0px; margin-left:auto; margin-right:auto;\">";
|
|
|
|
|
+ htmlDesc += "<span class=\"st_tit_desc\" style=\"display:block; margin-bottom:10px; font-size:18px; font-weight:500; letter-spacing:-0.025em;\">"+goodsMap.getDetailDescNew10()+"</span>";
|
|
|
|
|
+ htmlDesc += "<span class=\"st_ptxt01\" style=\"font-size:16px;font-weight:200;line-height:1.5;word-break:keep-all;color:#666666;\">";
|
|
|
|
|
+ htmlDesc += goodsMap.getDetailDescNew20();
|
|
|
|
|
+ htmlDesc += "</span>";
|
|
|
|
|
+ htmlDesc += "</div>";
|
|
|
|
|
+ }
|
|
|
|
|
+ if( null != goodsMap.getDetailDescNew30()) {
|
|
|
|
|
+ htmlDesc += "<div class=\"st_desc_character\" style=\"position:relative; margin-top:40px; margin-left:auto; margin-right:auto;\">";
|
|
|
|
|
+ htmlDesc += "<span class=\"st_tit_desc\" style=\"display:block; margin-bottom:10px; font-size:18px; font-weight:500; letter-spacing:-0.025em;\">상품특징</span>";
|
|
|
|
|
+ htmlDesc += "<span class=\"st_ptxt01\" style=\"font-size:16px;font-weight:200;line-height:1.5;word-break:keep-all;color:#666666;\">";
|
|
|
|
|
+ htmlDesc += goodsMap.getDetailDescNew30();
|
|
|
|
|
+ htmlDesc += "</span>";
|
|
|
|
|
+ htmlDesc += "</div>";
|
|
|
|
|
+ }
|
|
|
htmlDesc += "</div>";
|
|
htmlDesc += "</div>";
|
|
|
|
|
|
|
|
// 2) 상세내용 - 상품옵션별 색상
|
|
// 2) 상세내용 - 상품옵션별 색상
|