|
|
@@ -0,0 +1,57 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="ko"
|
|
|
+ xmlns:th="http://www.thymeleaf.org"
|
|
|
+ style="overflow-x: hidden !important;"
|
|
|
+>
|
|
|
+<!--
|
|
|
+ *******************************************************************************
|
|
|
+ * @source : CouponDetailPopWeb.html
|
|
|
+ * @desc : 쿠폰적용대상 리스트 Page
|
|
|
+ *============================================================================
|
|
|
+ * PastelMall
|
|
|
+ * Copyright(C) 2020 TSIT, All rights reserved.
|
|
|
+ *============================================================================
|
|
|
+ * VER DATE AUTHOR DESCRIPTION
|
|
|
+ * === =========== ========== =============================================
|
|
|
+ * 1.0 2021.03.17 sowon 최초 작성
|
|
|
+ *******************************************************************************
|
|
|
+ -->
|
|
|
+<!-- 월별 관심상품 -->
|
|
|
+<th:block th:if="${wishMonth != null}" th:each="WishMonth, wishStat : ${wishMonth}">
|
|
|
+<div class="monthly_wish_wrap">
|
|
|
+ <div class="date">
|
|
|
+ <span th:text="${WishMonth.regDt}"></span>
|
|
|
+ </div>
|
|
|
+ <div class="itemsGrp">
|
|
|
+ <th:block th:each="WishGoods, wishStat : ${wishGoods}">
|
|
|
+ <div class="item_prod">
|
|
|
+ <div class="item_state">
|
|
|
+ <button type="button" class="itemLike active" th:attr="goodsCd=${WishGoods.goodsCd}, ithrCd='', contentsLoc='', planDtlSq=''" onclick="wishlistDelete(this)">관심상품 추가</button>
|
|
|
+ <a href="javascript:void(0);" class="itemLink" th:onclick="cfnGoToGoodsDetail([[${WishGoods.goodsCd}]])">
|
|
|
+ <div class="itemPic">
|
|
|
+ <img alt="" class=" vLHTC pd_img" src="/images/pc/thumb/prod5.jpg">
|
|
|
+ </div>
|
|
|
+ <p class=" itemBrand" th:text="${WishGoods.brandKnm}"></p>
|
|
|
+ <div class=" itemName" th:text="${WishGoods.goodsNm}"></div>
|
|
|
+ <p class="itemPrice">[[${#numbers.formatInteger(WishGoods.currPrice,3,'POINT') + '원'}]]
|
|
|
+ <span class="itemPrice_original" th:if="${WishGoods.currPrice != WishGoods.listPrice}" th:text="${#numbers.formatInteger(WishGoods.listPrice,3,'POINT') + '원'}"></span>
|
|
|
+ <span class=" itemPercent" th:if="${WishGoods.dcRate > 0}" th:text="|${#numbers.formatDecimal(WishGoods.dcRate,0,0)}%|"></span>
|
|
|
+ </p>
|
|
|
+ <div class="itemcolorchip">
|
|
|
+ <span class="chip_color35" value="ABM">BEIGE</span>
|
|
|
+ <span class="chip_color54" value="BDS">BLACK</span>
|
|
|
+ <span class="chip_color40" value="YBR">WHITE</span>
|
|
|
+ </div>
|
|
|
+ <p class="itemBadge">
|
|
|
+ <span class="badge13">베스트 </span>
|
|
|
+ </p>
|
|
|
+ <div class="itemComment">★ [NEW] 20FW 빅웨이브 단독발매!</div>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </th:block>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+</th:block>
|
|
|
+<!-- //월별 관심상품 -->
|
|
|
+
|