|
|
@@ -1,373 +1,375 @@
|
|
|
<div class="inner">
|
|
|
<div class="part_goods">
|
|
|
-
|
|
|
- <th:block th:each="order , i : ${orderList}">
|
|
|
- <div class="goods_top">
|
|
|
- <th:block th:if="${order.giftPackYn} == 'Y'">
|
|
|
- <div class="goods_date">선물일<span class="date" th:text="${order.ordDt}"></span></div>
|
|
|
- </th:block>
|
|
|
- <th:block th:if="${order.giftPackYn} == 'N'">
|
|
|
- <div class="goods_date">주문일<span class="date" th:text="${order.ordDt}"></span></div>
|
|
|
- </th:block>
|
|
|
- <a href="javascript:void(0);" class="detail_btn" th:ordno="${order.ordNo}" onclick="fnGoToOrderDetail(this)">상세보기</a>
|
|
|
- </div>
|
|
|
-
|
|
|
- <th:block th:each="ordDtl , j : ${order.ordDtlList}" th:with="imageUrl=${@environment.getProperty('upload.goods.view')}">
|
|
|
- <!-- 주문 접수 -->
|
|
|
- <div class="goods_section">
|
|
|
- <div class="goods_status">
|
|
|
- <!-- 선물배송일때 -->
|
|
|
- <th:block th:if="${ordDtl.giftPackYn} == 'Y'">
|
|
|
- <div class="goods_txt">
|
|
|
- <!-- 배송지등록전 -->
|
|
|
- <th:block th:if="${ordDtl.recipBaseAddr == ''} and ${ordDtl.giftLimitDay} >= 0">
|
|
|
- <p class="dlvr_staus">주소 입력 대기 중</p>
|
|
|
- </th:block>
|
|
|
- <!-- //배송지등록전 -->
|
|
|
-
|
|
|
- <!-- 배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_50' or ${ordDtl.ordDtlStat} == 'G013_55' or ${ordDtl.ordDtlStat} == 'G013_60' or ${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
- <th:block th:if="${ordDtl.recipBaseAddr != ''} and ${ordDtl.ordDtlStat} != 'G013_98' and ${ordDtl.ordDtlStat} != 'G013_99'">
|
|
|
- <p class="dlvr_staus">선물 완료</p>
|
|
|
+ <!-- 주문목록이 있을때 -->
|
|
|
+ <th:block th:if="${#lists.size(orderList) > 0}">
|
|
|
+ <th:block th:each="order , i : ${orderList}">
|
|
|
+ <div class="goods_top">
|
|
|
+ <th:block th:if="${order.giftPackYn} == 'Y'">
|
|
|
+ <div class="goods_date">선물일<span class="date" th:text="${order.ordDt}"></span></div>
|
|
|
+ </th:block>
|
|
|
+ <th:block th:if="${order.giftPackYn} == 'N'">
|
|
|
+ <div class="goods_date">주문일<span class="date" th:text="${order.ordDt}"></span></div>
|
|
|
+ </th:block>
|
|
|
+ <a href="javascript:void(0);" class="detail_btn" th:ordno="${order.ordNo}" onclick="fnGoToOrderDetail(this)">상세보기</a>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <th:block th:each="ordDtl , j : ${order.ordDtlList}" th:with="imageUrl=${@environment.getProperty('upload.goods.view')}">
|
|
|
+ <!-- 주문 접수 -->
|
|
|
+ <div class="goods_section">
|
|
|
+ <div class="goods_status">
|
|
|
+ <!-- 선물배송일때 -->
|
|
|
+ <th:block th:if="${ordDtl.giftPackYn} == 'Y'">
|
|
|
+ <div class="goods_txt">
|
|
|
+ <!-- 배송지등록전 -->
|
|
|
+ <th:block th:if="${ordDtl.recipBaseAddr == ''} and ${ordDtl.giftLimitDay} >= 0">
|
|
|
+ <p class="dlvr_staus">주소 입력 대기 중</p>
|
|
|
</th:block>
|
|
|
- </th:block>
|
|
|
- <!-- //배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
-
|
|
|
- <!-- 선물 취소 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_98' and ${ordDtl.ordDtlStat} == 'G013_99'">
|
|
|
- <p class="dlvr_staus">선물 취소</p>
|
|
|
- </th:block>
|
|
|
- <!-- //선물 취소 -->
|
|
|
- </div>
|
|
|
- </th:block>
|
|
|
- <!-- //선물배송일때 -->
|
|
|
-
|
|
|
- <!-- 일반배송일때 -->
|
|
|
- <th:block th:if="${ordDtl.giftPackYn} == 'N'">
|
|
|
- <p class="dlvr_staus" th:text="${ordDtl.ordDtlStatNm}"></p>
|
|
|
- </th:block>
|
|
|
- <!-- //일반배송일때 -->
|
|
|
- </div>
|
|
|
- <div class="goods_detail">
|
|
|
- <a href="">
|
|
|
- <div class="thumb_box">
|
|
|
- <img th:src="${imageUrl + '/' + ordDtl.sysImgNm}" src="/" width="100%" alt="">
|
|
|
- </div>
|
|
|
- <div class="info_box">
|
|
|
- <div class="od_name">
|
|
|
- <div class="brand">
|
|
|
- <span th:text="${ordDtl.brandNm}"></span>
|
|
|
- <div class="badge_wrap">
|
|
|
- <th:block th:if="${ordDtl.shotDelvYn} == 'Y'">
|
|
|
- <em class="order_badge order_bullet_badge">총알배송</em>
|
|
|
- </th:block>
|
|
|
- <th:block th:if="${ordDtl.selfGoodsYn} == 'Y'">
|
|
|
- <em class="order_badge">STYLE24 일반배송</em>
|
|
|
- </th:block>
|
|
|
- <th:block th:if="${ordDtl.shotDelvYn} != 'Y' and ${ordDtl.selfGoodsYn} != 'Y'">
|
|
|
- <em class="order_badge">업체직배송</em>
|
|
|
- </th:block>
|
|
|
+ <!-- //배송지등록전 -->
|
|
|
+
|
|
|
+ <!-- 배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_50' or ${ordDtl.ordDtlStat} == 'G013_55' or ${ordDtl.ordDtlStat} == 'G013_60' or ${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
+ <th:block th:if="${ordDtl.recipBaseAddr != ''} and ${ordDtl.ordDtlStat} != 'G013_98' and ${ordDtl.ordDtlStat} != 'G013_99'">
|
|
|
+ <p class="dlvr_staus">선물 완료</p>
|
|
|
+ </th:block>
|
|
|
+ </th:block>
|
|
|
+ <!-- //배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
+
|
|
|
+ <!-- 선물 취소 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_98' and ${ordDtl.ordDtlStat} == 'G013_99'">
|
|
|
+ <p class="dlvr_staus">선물 취소</p>
|
|
|
+ </th:block>
|
|
|
+ <!-- //선물 취소 -->
|
|
|
+ </div>
|
|
|
+ </th:block>
|
|
|
+ <!-- //선물배송일때 -->
|
|
|
+
|
|
|
+ <!-- 일반배송일때 -->
|
|
|
+ <th:block th:if="${ordDtl.giftPackYn} == 'N'">
|
|
|
+ <p class="dlvr_staus" th:text="${ordDtl.ordDtlStatNm}"></p>
|
|
|
+ </th:block>
|
|
|
+ <!-- //일반배송일때 -->
|
|
|
+ </div>
|
|
|
+ <div class="goods_detail">
|
|
|
+ <a href="">
|
|
|
+ <div class="thumb_box">
|
|
|
+ <img th:src="${imageUrl + '/' + ordDtl.sysImgNm}" src="/" width="100%" alt="">
|
|
|
+ </div>
|
|
|
+ <div class="info_box">
|
|
|
+ <div class="od_name">
|
|
|
+ <div class="brand">
|
|
|
+ <span th:text="${ordDtl.brandNm}"></span>
|
|
|
+ <div class="badge_wrap">
|
|
|
+ <th:block th:if="${ordDtl.shotDelvYn} == 'Y'">
|
|
|
+ <em class="order_badge order_bullet_badge">총알배송</em>
|
|
|
+ </th:block>
|
|
|
+ <th:block th:if="${ordDtl.selfGoodsYn} == 'Y'">
|
|
|
+ <em class="order_badge">STYLE24 일반배송</em>
|
|
|
+ </th:block>
|
|
|
+ <th:block th:if="${ordDtl.shotDelvYn} != 'Y' and ${ordDtl.selfGoodsYn} != 'Y'">
|
|
|
+ <em class="order_badge">업체직배송</em>
|
|
|
+ </th:block>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
+ <div class="name" th:text="${ordDtl.goodsNm}"></div>
|
|
|
</div>
|
|
|
- <div class="name" th:text="${ordDtl.goodsNm}"></div>
|
|
|
- </div>
|
|
|
- <div class="od_opt">
|
|
|
- <div class="option" th:each="colorNm, index : ${ordDtl.colorNmArr}">
|
|
|
- <em th:text="${colorNm}"></em>
|
|
|
- <em th:text="${ordDtl.optCd2Arr[index.index]}"></em>
|
|
|
+ <div class="od_opt">
|
|
|
+ <div class="option" th:each="colorNm, index : ${ordDtl.colorNmArr}">
|
|
|
+ <em th:text="${colorNm}"></em>
|
|
|
+ <em th:text="${ordDtl.optCd2Arr[index.index]}"></em>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- <div class="od_calc">
|
|
|
- <!-- 판매금액과 할인금액이 같으면 표시 안함 -->
|
|
|
- <th:block th:if="(${ordDtl.ordAmt} - ${ordDtl.cnclRtnAmt} - ${ordDtl.cpn1DcAmt}) > ${ordDtl.realOrdAmt} + ${ordDtl.pntDcAmt} + ${ordDtl.gfcdUseAmt}">
|
|
|
- <p class="sale_price">
|
|
|
- <del>
|
|
|
- <em th:text="${#numbers.formatInteger(ordDtl.ordAmt - ordDtl.cnclRtnAmt - ordDtl.cpn1DcAmt, 1, 'COMMA')}"></em>원
|
|
|
- </del>
|
|
|
+ <div class="od_calc">
|
|
|
+ <!-- 판매금액과 할인금액이 같으면 표시 안함 -->
|
|
|
+ <th:block th:if="(${ordDtl.ordAmt} - ${ordDtl.cnclRtnAmt} - ${ordDtl.cpn1DcAmt}) > ${ordDtl.realOrdAmt} + ${ordDtl.pntDcAmt} + ${ordDtl.gfcdUseAmt}">
|
|
|
+ <p class="sale_price">
|
|
|
+ <del>
|
|
|
+ <em th:text="${#numbers.formatInteger(ordDtl.ordAmt - ordDtl.cnclRtnAmt - ordDtl.cpn1DcAmt, 1, 'COMMA')}"></em>원
|
|
|
+ </del>
|
|
|
+ </p>
|
|
|
+ </th:block>
|
|
|
+ <p class="price">
|
|
|
+ <span class="selling_price">
|
|
|
+ <em th:text="${#numbers.formatInteger(ordDtl.realOrdAmt + ordDtl.pntDcAmt + ordDtl.gfcdUseAmt, 1, 'COMMA')}"></em>원
|
|
|
+ </span>
|
|
|
+ <span class="count">
|
|
|
+ <em th:text="${ordDtl.ordQty} - ${ordDtl.cnclRtnQty}"></em>개
|
|
|
+ </span>
|
|
|
</p>
|
|
|
- </th:block>
|
|
|
- <p class="price">
|
|
|
- <span class="selling_price">
|
|
|
- <em th:text="${#numbers.formatInteger(ordDtl.realOrdAmt + ordDtl.pntDcAmt + ordDtl.gfcdUseAmt, 1, 'COMMA')}"></em>원
|
|
|
- </span>
|
|
|
- <span class="count">
|
|
|
- <em th:text="${ordDtl.ordQty} - ${ordDtl.cnclRtnQty}"></em>개
|
|
|
- </span>
|
|
|
- </p>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
-
|
|
|
- <!-- 버튼기능정리 -->
|
|
|
- <!-- 일반배송 -->
|
|
|
- <th:block th:unless="${ordDtl.giftPackYn} == 'Y'">
|
|
|
- <!-- 입금대기, 결제완료, 상품준비중, 출고처지정 (주문취소) -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_10' or ${ordDtl.ordDtlStat} == 'G013_20' or ${ordDtl.ordDtlStat} == 'G013_30' or ${ordDtl.ordDtlStat} == 'G013_35'">
|
|
|
- <div class="goods_btn_wrap btn_group_flex">
|
|
|
- <div><button type="button" class="btn btn_default btn_cncl_complete"><span>주문 취소</span></button></div>
|
|
|
- </div>
|
|
|
- </th:block>
|
|
|
- <!-- //입금대기, 결제완료, 상품준비중, 출고처지정 (주문취소) -->
|
|
|
-
|
|
|
- <!-- 배송준비중-->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_40'">
|
|
|
- </th:block>
|
|
|
- <!-- //배송준비중-->
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
|
|
|
- <!-- 배송중 (교환가능, 반품가능) -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_50' or ${ordDtl.ordDtlStat} == 'G013_55'">
|
|
|
- <!-- 교환가능, 반품가능 -->
|
|
|
- <th:block th:if="${ordDtl.changeableYn} == 'Y' or ${ordDtl.returnableYn} == 'Y'">
|
|
|
+ <!-- 버튼기능정리 -->
|
|
|
+ <!-- 일반배송 -->
|
|
|
+ <th:block th:unless="${ordDtl.giftPackYn} == 'Y'">
|
|
|
+ <!-- 입금대기, 결제완료, 상품준비중, 출고처지정 (주문취소) -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_10' or ${ordDtl.ordDtlStat} == 'G013_20' or ${ordDtl.ordDtlStat} == 'G013_30' or ${ordDtl.ordDtlStat} == 'G013_35'">
|
|
|
<div class="goods_btn_wrap btn_group_flex">
|
|
|
- <th:block th:if="${ordDtl.changeableYn} == 'Y'">
|
|
|
- <div><button type="button" class="btn btn_default btn_exch_req"><span>교환 신청</span></button></div>
|
|
|
- </th:block>
|
|
|
- <th:block th:if="${ordDtl.returnableYn} == 'Y'">
|
|
|
- <div><button type="button" class="btn btn_default btn_rtn_req"><span>반품 신청</span></button></div>
|
|
|
- </th:block>
|
|
|
+ <div><button type="button" class="btn btn_default btn_cncl_complete"><span>주문 취소</span></button></div>
|
|
|
</div>
|
|
|
</th:block>
|
|
|
- <!-- //교환가능, 반품가능 -->
|
|
|
+ <!-- //입금대기, 결제완료, 상품준비중, 출고처지정 (주문취소) -->
|
|
|
|
|
|
- <!-- 리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- <div class="goods_btn_wrap btn_group_flex">
|
|
|
- <div><button type="button" class="btn btn_default btn_delv_sch"><span>배송 조회</span></button></div>
|
|
|
- <!-- 리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- <th:block th:if="${ordDtl.reviewableYn} == 'Y' and ${ordDtl.reviewSq} == null">
|
|
|
- <div><button type="button" class="btn btn_primary btn_review_write"><span>리뷰 쓰기</span></button></div>
|
|
|
- </th:block>
|
|
|
- <!-- //리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- </div>
|
|
|
- <!-- //리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- </th:block>
|
|
|
- <!-- //배송중 (교환가능, 반품가능) -->
|
|
|
+ <!-- 배송준비중-->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_40'">
|
|
|
+ </th:block>
|
|
|
+ <!-- //배송준비중-->
|
|
|
|
|
|
- <!-- 배송완료 (교환가능, 반품가능) -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_60'">
|
|
|
- <div class="goods_btn_wrap btn_group_flex">
|
|
|
+ <!-- 배송중 (교환가능, 반품가능) -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_50' or ${ordDtl.ordDtlStat} == 'G013_55'">
|
|
|
<!-- 교환가능, 반품가능 -->
|
|
|
- <th:block th:if="${ordDtl.changeableYn} == 'Y'">
|
|
|
- <div><button type="button" class="btn btn_default btn_exch_req"><span>교환 신청</span></button></div>
|
|
|
- </th:block>
|
|
|
- <th:block th:if="${ordDtl.returnableYn} == 'Y'">
|
|
|
- <div><button type="button" class="btn btn_default btn_rtn_req"><span>반품 신청</span></button></div>
|
|
|
+ <th:block th:if="${ordDtl.changeableYn} == 'Y' or ${ordDtl.returnableYn} == 'Y'">
|
|
|
+ <div class="goods_btn_wrap btn_group_flex">
|
|
|
+ <th:block th:if="${ordDtl.changeableYn} == 'Y'">
|
|
|
+ <div><button type="button" class="btn btn_default btn_exch_req"><span>교환 신청</span></button></div>
|
|
|
+ </th:block>
|
|
|
+ <th:block th:if="${ordDtl.returnableYn} == 'Y'">
|
|
|
+ <div><button type="button" class="btn btn_default btn_rtn_req"><span>반품 신청</span></button></div>
|
|
|
+ </th:block>
|
|
|
+ </div>
|
|
|
</th:block>
|
|
|
<!-- //교환가능, 반품가능 -->
|
|
|
|
|
|
- <div><button type="button" id="btn_purchase_confirm btn_ord_confirm" class="btn btn_primary"><span>구매 확정</span></button></div>
|
|
|
- </div>
|
|
|
- <div class="goods_btn_wrap btn_group_flex">
|
|
|
- <!-- 교환불가, 반품불가 -->
|
|
|
- <th:block th:if="${ordDtl.changeableYn} == 'N' or ${ordDtl.returnableYn} == 'N'">
|
|
|
- <div><button type="button" class="btn btn_default btn_qna_write"><span>1:1 문의</span></button></div>
|
|
|
- </th:block>
|
|
|
- <!-- //교환불가, 반품불가 -->
|
|
|
-
|
|
|
<!-- 리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- <th:block th:if="${ordDtl.reviewableYn} == 'Y' and ${ordDtl.reviewSq} == null">
|
|
|
- <div><button type="button" class="btn btn_primary btn_review_write"><span>리뷰 쓰기</span></button></div>
|
|
|
- </th:block>
|
|
|
- <!-- //리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- </div>
|
|
|
- </th:block>
|
|
|
- <!-- //배송완료 (교환가능, 반품가능) -->
|
|
|
-
|
|
|
- <!-- 구매확정 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
- <div class="goods_btn_wrap btn_group_flex">
|
|
|
- <div><button type="button" class="btn btn_primary btn_cart_save"><span>쇼핑백 담기</span></button></div>
|
|
|
- <div><button type="button" class="btn btn_default btn_qna_write"><span>1:1 문의</span></button></div>
|
|
|
-
|
|
|
- <!-- 리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- <th:block th:if="${ordDtl.reviewableYn} == 'Y' and ${ordDtl.reviewSq} == null">
|
|
|
- <div><button type="button" class="btn btn_primary btn_review_write"><span>리뷰 쓰기</span></button></div>
|
|
|
- </th:block>
|
|
|
+ <div class="goods_btn_wrap btn_group_flex">
|
|
|
+ <div><button type="button" class="btn btn_default btn_delv_sch"><span>배송 조회</span></button></div>
|
|
|
+ <!-- 리뷰사용가능, 리뷰등록전일때 -->
|
|
|
+ <th:block th:if="${ordDtl.reviewableYn} == 'Y' and ${ordDtl.reviewSq} == null">
|
|
|
+ <div><button type="button" class="btn btn_primary btn_review_write"><span>리뷰 쓰기</span></button></div>
|
|
|
+ </th:block>
|
|
|
+ <!-- //리뷰사용가능, 리뷰등록전일때 -->
|
|
|
+ </div>
|
|
|
<!-- //리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- </div>
|
|
|
- </th:block>
|
|
|
- <!-- //구매확정 -->
|
|
|
- </th:block>
|
|
|
-
|
|
|
- <!-- 선물배송 -->
|
|
|
- <th:block th:if="${ordDtl.giftPackYn} == 'Y'">
|
|
|
- <!-- 선물배송, 배송미입력 -->
|
|
|
- <div class="goods_btn_wrap btn_group_flex">
|
|
|
- <!-- 배송지등록전 -->
|
|
|
- <th:block th:if="${ordDtl.recipBaseAddr == ''} and ${ordDtl.giftLimitDay} >= 0">
|
|
|
- <div><button type="button" class="btn btn_primary btn_sms_send"><span>SMS 재발송</span></button></div>
|
|
|
</th:block>
|
|
|
- <!-- //배송지등록전 -->
|
|
|
-
|
|
|
- <!-- 배송지등록후(입금대기, 결제완료, 상품준비중, 출고처지정, 배송준비중) -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_10' or ${ordDtl.ordDtlStat} == 'G013_20' or ${ordDtl.ordDtlStat} == 'G013_30' or ${ordDtl.ordDtlStat} == 'G013_35'">
|
|
|
- <div><button type="button" class="btn btn_default btn_cncl_complete"><span>주문 취소</span></button></div>
|
|
|
+ <!-- //배송중 (교환가능, 반품가능) -->
|
|
|
+
|
|
|
+ <!-- 배송완료 (교환가능, 반품가능) -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_60'">
|
|
|
+ <div class="goods_btn_wrap btn_group_flex">
|
|
|
+ <!-- 교환가능, 반품가능 -->
|
|
|
+ <th:block th:if="${ordDtl.changeableYn} == 'Y'">
|
|
|
+ <div><button type="button" class="btn btn_default btn_exch_req"><span>교환 신청</span></button></div>
|
|
|
+ </th:block>
|
|
|
+ <th:block th:if="${ordDtl.returnableYn} == 'Y'">
|
|
|
+ <div><button type="button" class="btn btn_default btn_rtn_req"><span>반품 신청</span></button></div>
|
|
|
+ </th:block>
|
|
|
+ <!-- //교환가능, 반품가능 -->
|
|
|
+
|
|
|
+ <div><button type="button" id="btn_purchase_confirm btn_ord_confirm" class="btn btn_primary"><span>구매 확정</span></button></div>
|
|
|
+ </div>
|
|
|
+ <div class="goods_btn_wrap btn_group_flex">
|
|
|
+ <!-- 교환불가, 반품불가 -->
|
|
|
+ <th:block th:if="${ordDtl.changeableYn} == 'N' or ${ordDtl.returnableYn} == 'N'">
|
|
|
+ <div><button type="button" class="btn btn_default btn_qna_write"><span>1:1 문의</span></button></div>
|
|
|
+ </th:block>
|
|
|
+ <!-- //교환불가, 반품불가 -->
|
|
|
+
|
|
|
+ <!-- 리뷰사용가능, 리뷰등록전일때 -->
|
|
|
+ <th:block th:if="${ordDtl.reviewableYn} == 'Y' and ${ordDtl.reviewSq} == null">
|
|
|
+ <div><button type="button" class="btn btn_primary btn_review_write"><span>리뷰 쓰기</span></button></div>
|
|
|
+ </th:block>
|
|
|
+ <!-- //리뷰사용가능, 리뷰등록전일때 -->
|
|
|
+ </div>
|
|
|
</th:block>
|
|
|
- <!-- //배송지등록후(입금대기, 결제완료, 상품준비중, 출고처지정, 배송준비중) -->
|
|
|
+ <!-- //배송완료 (교환가능, 반품가능) -->
|
|
|
|
|
|
- <!-- 배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_50' or ${ordDtl.ordDtlStat} == 'G013_55' or ${ordDtl.ordDtlStat} == 'G013_60' or ${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
- <th:block th:if="${ordDtl.recipBaseAddr != ''} and ${ordDtl.ordDtlStat} != 'G013_98' and ${ordDtl.ordDtlStat} != 'G013_99'">
|
|
|
+ <!-- 구매확정 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
+ <div class="goods_btn_wrap btn_group_flex">
|
|
|
<div><button type="button" class="btn btn_primary btn_cart_save"><span>쇼핑백 담기</span></button></div>
|
|
|
+ <div><button type="button" class="btn btn_default btn_qna_write"><span>1:1 문의</span></button></div>
|
|
|
+
|
|
|
<!-- 리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- <th:block th:if="${ordDtl.reviewableYn} == 'Y' and ${ordDtl.reviewSq} == null and ${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
+ <th:block th:if="${ordDtl.reviewableYn} == 'Y' and ${ordDtl.reviewSq} == null">
|
|
|
<div><button type="button" class="btn btn_primary btn_review_write"><span>리뷰 쓰기</span></button></div>
|
|
|
</th:block>
|
|
|
<!-- //리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- </th:block>
|
|
|
+ </div>
|
|
|
</th:block>
|
|
|
- <!-- //배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
- </div>
|
|
|
- </th:block>
|
|
|
- <!-- //선물배송 -->
|
|
|
- <!-- //버튼기능정리 -->
|
|
|
-
|
|
|
- <!-- 상태문구정리 -->
|
|
|
- <!-- 일반배송일때 -->
|
|
|
- <th:block th:if="${ordDtl.giftPackYn} == 'N'">
|
|
|
- <div class="goods_alert">
|
|
|
- <!-- 배송중, 배송완료 상태 교환, 반품 가능 상태 체크 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_50' or ${ordDtl.ordDtlStat} == 'G013_55' or ${ordDtl.ordDtlStat} == 'G013_60'">
|
|
|
- <!-- 교환불가능, 반품불가능 -->
|
|
|
- <th:block th:if="${ordDtl.changeableYn} == 'N' and ${ordDtl.returnableYn} == 'N'">
|
|
|
- <p class="cf_txt cf_desc">해당 상품은 교환/반품이 불가능한 상품입니다.<br>문의사항은 1:1 문의를 이용해 주세요.</p>
|
|
|
- </th:block>
|
|
|
- <!-- //교환불가능, 반품불가능 -->
|
|
|
-
|
|
|
- <!-- 교환불가능 -->
|
|
|
- <th:block th:if="${ordDtl.changeableYn} == 'N'">
|
|
|
- <p class="cf_txt cf_desc">해당 상품은 교환이 불가능한 상품입니다.<br>문의사항은 1:1 문의를 이용해 주세요.</p>
|
|
|
+ <!-- //구매확정 -->
|
|
|
+ </th:block>
|
|
|
+
|
|
|
+ <!-- 선물배송 -->
|
|
|
+ <th:block th:if="${ordDtl.giftPackYn} == 'Y'">
|
|
|
+ <!-- 선물배송, 배송미입력 -->
|
|
|
+ <div class="goods_btn_wrap btn_group_flex">
|
|
|
+ <!-- 배송지등록전 -->
|
|
|
+ <th:block th:if="${ordDtl.recipBaseAddr == ''} and ${ordDtl.giftLimitDay} >= 0">
|
|
|
+ <div><button type="button" class="btn btn_primary btn_sms_send"><span>SMS 재발송</span></button></div>
|
|
|
</th:block>
|
|
|
- <!-- //교환불가능 -->
|
|
|
+ <!-- //배송지등록전 -->
|
|
|
|
|
|
- <!-- 반품불가능 -->
|
|
|
- <th:block th:if="${ordDtl.returnableYn} == 'N'">
|
|
|
- <p class="cf_txt cf_desc">해당 상품은 교환이 불가능한 상품입니다.<br>문의사항은 1:1 문의를 이용해 주세요.</p>
|
|
|
+ <!-- 배송지등록후(입금대기, 결제완료, 상품준비중, 출고처지정, 배송준비중) -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_10' or ${ordDtl.ordDtlStat} == 'G013_20' or ${ordDtl.ordDtlStat} == 'G013_30' or ${ordDtl.ordDtlStat} == 'G013_35'">
|
|
|
+ <div><button type="button" class="btn btn_default btn_cncl_complete"><span>주문 취소</span></button></div>
|
|
|
</th:block>
|
|
|
- <!-- //반품불가능 -->
|
|
|
+ <!-- //배송지등록후(입금대기, 결제완료, 상품준비중, 출고처지정, 배송준비중) -->
|
|
|
|
|
|
- </th:block>
|
|
|
- <!-- //배송중, 배송완료 상태 -->
|
|
|
- </div>
|
|
|
-
|
|
|
- <!-- 주문접수 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_10'">
|
|
|
- <div class="goods_txt">
|
|
|
- <p class="cf_txt cf_desc">주문 완료 / 결제를 기다리고 있습니다.</p>
|
|
|
- <th:block th:if="${ordDtl.delvResDt} != null">
|
|
|
- <p class="cf_txt cf_desc" th:text="|예약판매 상품으로 ${ordDtl.delvResDt} 출고 예정입니다.|"></p>
|
|
|
+ <!-- 배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_50' or ${ordDtl.ordDtlStat} == 'G013_55' or ${ordDtl.ordDtlStat} == 'G013_60' or ${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
+ <th:block th:if="${ordDtl.recipBaseAddr != ''} and ${ordDtl.ordDtlStat} != 'G013_98' and ${ordDtl.ordDtlStat} != 'G013_99'">
|
|
|
+ <div><button type="button" class="btn btn_primary btn_cart_save"><span>쇼핑백 담기</span></button></div>
|
|
|
+ <!-- 리뷰사용가능, 리뷰등록전일때 -->
|
|
|
+ <th:block th:if="${ordDtl.reviewableYn} == 'Y' and ${ordDtl.reviewSq} == null and ${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
+ <div><button type="button" class="btn btn_primary btn_review_write"><span>리뷰 쓰기</span></button></div>
|
|
|
+ </th:block>
|
|
|
+ <!-- //리뷰사용가능, 리뷰등록전일때 -->
|
|
|
+ </th:block>
|
|
|
</th:block>
|
|
|
+ <!-- //배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
</div>
|
|
|
</th:block>
|
|
|
- <!-- //주문접수 -->
|
|
|
+ <!-- //선물배송 -->
|
|
|
+ <!-- //버튼기능정리 -->
|
|
|
|
|
|
- <!-- 결제완료, 예약배송상품 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_10'">
|
|
|
- <th:block th:if="${ordDtl.delvResDt} != null">
|
|
|
+ <!-- 상태문구정리 -->
|
|
|
+ <!-- 일반배송일때 -->
|
|
|
+ <th:block th:if="${ordDtl.giftPackYn} == 'N'">
|
|
|
+ <div class="goods_alert">
|
|
|
+ <!-- 배송중, 배송완료 상태 교환, 반품 가능 상태 체크 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_50' or ${ordDtl.ordDtlStat} == 'G013_55' or ${ordDtl.ordDtlStat} == 'G013_60'">
|
|
|
+ <!-- 교환불가능, 반품불가능 -->
|
|
|
+ <th:block th:if="${ordDtl.changeableYn} == 'N' and ${ordDtl.returnableYn} == 'N'">
|
|
|
+ <p class="cf_txt cf_desc">해당 상품은 교환/반품이 불가능한 상품입니다.<br>문의사항은 1:1 문의를 이용해 주세요.</p>
|
|
|
+ </th:block>
|
|
|
+ <!-- //교환불가능, 반품불가능 -->
|
|
|
+
|
|
|
+ <!-- 교환불가능 -->
|
|
|
+ <th:block th:if="${ordDtl.changeableYn} == 'N'">
|
|
|
+ <p class="cf_txt cf_desc">해당 상품은 교환이 불가능한 상품입니다.<br>문의사항은 1:1 문의를 이용해 주세요.</p>
|
|
|
+ </th:block>
|
|
|
+ <!-- //교환불가능 -->
|
|
|
+
|
|
|
+ <!-- 반품불가능 -->
|
|
|
+ <th:block th:if="${ordDtl.returnableYn} == 'N'">
|
|
|
+ <p class="cf_txt cf_desc">해당 상품은 교환이 불가능한 상품입니다.<br>문의사항은 1:1 문의를 이용해 주세요.</p>
|
|
|
+ </th:block>
|
|
|
+ <!-- //반품불가능 -->
|
|
|
+
|
|
|
+ </th:block>
|
|
|
+ <!-- //배송중, 배송완료 상태 -->
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 주문접수 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_10'">
|
|
|
<div class="goods_txt">
|
|
|
- <p class="cf_txt cf_desc" th:text="|예약판매 상품으로 ${ordDtl.delvResDt} 출고 예정입니다.|"></p>
|
|
|
+ <p class="cf_txt cf_desc">주문 완료 / 결제를 기다리고 있습니다.</p>
|
|
|
+ <th:block th:if="${ordDtl.delvResDt} != null">
|
|
|
+ <p class="cf_txt cf_desc" th:text="|예약판매 상품으로 ${ordDtl.delvResDt} 출고 예정입니다.|"></p>
|
|
|
+ </th:block>
|
|
|
</div>
|
|
|
</th:block>
|
|
|
- </th:block>
|
|
|
- <!-- //결제완료, 예약배송상품 -->
|
|
|
-
|
|
|
- <!-- 상품준비중 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_30'">
|
|
|
- <div class="goods_txt">
|
|
|
- <p class="cf_txt cf_desc">배송할 상품을 준비 중입니다.</p>
|
|
|
- <th:block th:if="${ordDtl.delvResDt} != null">
|
|
|
- <p class="cf_txt cf_desc" th:text="|예약판매 상품으로 ${ordDtl.delvResDt} 출고 예정입니다.|"></p>
|
|
|
- </th:block>
|
|
|
- </div>
|
|
|
- </th:block>
|
|
|
- <!-- //상품준비중 -->
|
|
|
-
|
|
|
- <!-- 배송준비중 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_40'">
|
|
|
- <div class="goods_txt">
|
|
|
- <p class="cf_txt cf_desc">상품 준비가 완료되어 곧 배송될 예정입니다.</p>
|
|
|
- <th:block th:if="${ordDtl.delvResDt} != null">
|
|
|
- <p class="cf_txt cf_desc" th:text="|예약판매 상품으로 ${ordDtl.delvResDt} 출고 예정입니다.|"></p>
|
|
|
- </th:block>
|
|
|
- </div>
|
|
|
- </th:block>
|
|
|
- <!-- //배송준비중 -->
|
|
|
-
|
|
|
- <!-- 배송완료 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_60'">
|
|
|
- <div class="goods_txt">
|
|
|
- <p class="cf_txt cf_desc">15일 후 자동으로 구매확정됩니다.</p>
|
|
|
- </div>
|
|
|
- </th:block>
|
|
|
- <!-- //배송완료 -->
|
|
|
-
|
|
|
- <!-- 구매확정 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
- <!-- 리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- <th:block th:if="${ordDtl.reviewableYn} == 'Y' and ${ordDtl.reviewSq} == null">
|
|
|
+ <!-- //주문접수 -->
|
|
|
+
|
|
|
+ <!-- 상품준비중 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_30'">
|
|
|
<div class="goods_txt">
|
|
|
- <p class="cf_txt cf_desc">리뷰를 작성하면 다른 구매자에게 도움이 될 수 있습니다</p>
|
|
|
+ <p class="cf_txt cf_desc">배송할 상품을 준비 중입니다.</p>
|
|
|
+ <th:block th:if="${ordDtl.delvResDt} != null">
|
|
|
+ <p class="cf_txt cf_desc" th:text="|예약판매 상품으로 ${ordDtl.delvResDt} 출고 예정입니다.|"></p>
|
|
|
+ </th:block>
|
|
|
</div>
|
|
|
</th:block>
|
|
|
- <!-- //리뷰사용가능, 리뷰등록전일때 -->
|
|
|
- </th:block>
|
|
|
- <!-- //구매확정 -->
|
|
|
- </th:block>
|
|
|
- <!-- //일반배송일때 -->
|
|
|
-
|
|
|
- <!-- 선물배송일때 -->
|
|
|
- <th:block th:if="${ordDtl.giftPackYn} == 'Y'">
|
|
|
- <div class="goods_txt">
|
|
|
- <!-- 배송지등록전 -->
|
|
|
- <th:block th:if="${ordDtl.recipBaseAddr == ''} and ${ordDtl.giftLimitDay} >= 0">
|
|
|
- <p class="cf_txt cf_desc"><span th:text="|‘${ordDtl.recipNm}’|"></span>님 주소를 입력하기 전입니다.</p>
|
|
|
- <p class="period">입력기한 <span th:text="${ordDtl.giftLimitDt}"></span></p>
|
|
|
+ <!-- //상품준비중 -->
|
|
|
+
|
|
|
+ <!-- 배송준비중 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_40'">
|
|
|
+ <div class="goods_txt">
|
|
|
+ <p class="cf_txt cf_desc">상품 준비가 완료되어 곧 배송될 예정입니다.</p>
|
|
|
+ <th:block th:if="${ordDtl.delvResDt} != null">
|
|
|
+ <p class="cf_txt cf_desc" th:text="|예약판매 상품으로 ${ordDtl.delvResDt} 출고 예정입니다.|"></p>
|
|
|
+ </th:block>
|
|
|
+ </div>
|
|
|
</th:block>
|
|
|
- <!-- //배송지등록전 -->
|
|
|
+ <!-- //배송준비중 -->
|
|
|
|
|
|
- <!-- 배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_50' or ${ordDtl.ordDtlStat} == 'G013_55' or ${ordDtl.ordDtlStat} == 'G013_60' or ${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
- <th:block th:if="${ordDtl.recipBaseAddr != ''} and ${ordDtl.ordDtlStat} != 'G013_98' and ${ordDtl.ordDtlStat} != 'G013_99'">
|
|
|
- <p class="cf_txt cf_desc"><span th:text="|‘${ordDtl.recipNm}’|"></span>님께 선물이 발송되었습니다.</p>
|
|
|
- </th:block>
|
|
|
+ <!-- 배송완료 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_60'">
|
|
|
+ <div class="goods_txt">
|
|
|
+ <p class="cf_txt cf_desc">15일 후 자동으로 구매확정됩니다.</p>
|
|
|
+ </div>
|
|
|
</th:block>
|
|
|
- <!-- //배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
+ <!-- //배송완료 -->
|
|
|
|
|
|
- <!-- 선물 취소 -->
|
|
|
- <th:block th:if="${ordDtl.ordDtlStat} == 'G013_98' and ${ordDtl.ordDtlStat} == 'G013_99'">
|
|
|
- <p class="cf_txt cf_desc">주소 입력 기한이 경과되어 선물이 취소 되었습니다.</p>
|
|
|
+ <!-- 구매확정 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
+ <!-- 리뷰사용가능, 리뷰등록전일때 -->
|
|
|
+ <th:block th:if="${ordDtl.reviewableYn} == 'Y' and ${ordDtl.reviewSq} == null">
|
|
|
+ <div class="goods_txt">
|
|
|
+ <p class="cf_txt cf_desc">리뷰를 작성하면 다른 구매자에게 도움이 될 수 있습니다</p>
|
|
|
+ </div>
|
|
|
+ </th:block>
|
|
|
+ <!-- //리뷰사용가능, 리뷰등록전일때 -->
|
|
|
</th:block>
|
|
|
- <!-- //선물 취소 -->
|
|
|
- </div>
|
|
|
- </th:block>
|
|
|
- <!-- //선물배송일때 -->
|
|
|
- <!-- //상태문구정리 -->
|
|
|
-
|
|
|
- <!-- 사은품 영역 -->
|
|
|
- <th:block th:if="${order.freeGiftList != null and #lists.size(order.freeGiftList) > 0}">
|
|
|
- <div class="goods_gift">
|
|
|
- <div class="gift_wrap">
|
|
|
- <div class="title">사은품</div>
|
|
|
- <div class="li_gift">
|
|
|
- <ul>
|
|
|
- <th:block th:each="freeGift , j : ${order.freeGiftList}">
|
|
|
- <li>
|
|
|
- <span class="gift_name" th:text="${freeGift.goodsNm}"></span>
|
|
|
- <th:block th:if="${freeGift.usePoint} > 0">
|
|
|
- <span class="deduct_p" th:text="|(-${freeGift.usePoint.addComma()}P)|"></span>
|
|
|
- </th:block>
|
|
|
- </li>
|
|
|
- </th:block>
|
|
|
- </ul>
|
|
|
+ <!-- //구매확정 -->
|
|
|
+ </th:block>
|
|
|
+ <!-- //일반배송일때 -->
|
|
|
+
|
|
|
+ <!-- 선물배송일때 -->
|
|
|
+ <th:block th:if="${ordDtl.giftPackYn} == 'Y'">
|
|
|
+ <div class="goods_txt">
|
|
|
+ <!-- 배송지등록전 -->
|
|
|
+ <th:block th:if="${ordDtl.recipBaseAddr == ''} and ${ordDtl.giftLimitDay} >= 0">
|
|
|
+ <p class="cf_txt cf_desc"><span th:text="|‘${ordDtl.recipNm}’|"></span>님 주소를 입력하기 전입니다.</p>
|
|
|
+ <p class="period">입력기한 <span th:text="${ordDtl.giftLimitDt}"></span></p>
|
|
|
+ </th:block>
|
|
|
+ <!-- //배송지등록전 -->
|
|
|
+
|
|
|
+ <!-- 배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_50' or ${ordDtl.ordDtlStat} == 'G013_55' or ${ordDtl.ordDtlStat} == 'G013_60' or ${ordDtl.ordDtlStat} == 'G013_70'">
|
|
|
+ <th:block th:if="${ordDtl.recipBaseAddr != ''} and ${ordDtl.ordDtlStat} != 'G013_98' and ${ordDtl.ordDtlStat} != 'G013_99'">
|
|
|
+ <p class="cf_txt cf_desc"><span th:text="|‘${ordDtl.recipNm}’|"></span>님께 선물이 발송되었습니다.</p>
|
|
|
+ </th:block>
|
|
|
+ </th:block>
|
|
|
+ <!-- //배송지등록완료, 결제전취소, 결제후취소 아닐경우 -->
|
|
|
+
|
|
|
+ <!-- 선물 취소 -->
|
|
|
+ <th:block th:if="${ordDtl.ordDtlStat} == 'G013_98' and ${ordDtl.ordDtlStat} == 'G013_99'">
|
|
|
+ <p class="cf_txt cf_desc">주소 입력 기한이 경과되어 선물이 취소 되었습니다.</p>
|
|
|
+ </th:block>
|
|
|
+ <!-- //선물 취소 -->
|
|
|
+ </div>
|
|
|
+ </th:block>
|
|
|
+ <!-- //선물배송일때 -->
|
|
|
+ <!-- //상태문구정리 -->
|
|
|
+
|
|
|
+ <!-- 사은품 영역 -->
|
|
|
+ <th:block th:if="${order.freeGiftList != null and #lists.size(order.freeGiftList) > 0}">
|
|
|
+ <div class="goods_gift">
|
|
|
+ <div class="gift_wrap">
|
|
|
+ <div class="title">사은품</div>
|
|
|
+ <div class="li_gift">
|
|
|
+ <ul>
|
|
|
+ <th:block th:each="freeGift , j : ${order.freeGiftList}">
|
|
|
+ <li>
|
|
|
+ <span class="gift_name" th:text="${freeGift.goodsNm}"></span>
|
|
|
+ <th:block th:if="${freeGift.usePoint} > 0">
|
|
|
+ <span class="deduct_p" th:text="|(-${#numbers.formatInteger(freeGift.usePoint, 1, 'COMMA')}P)|"></span>
|
|
|
+ </th:block>
|
|
|
+ </li>
|
|
|
+ </th:block>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- </th:block>
|
|
|
- <!-- //사은품 영역 -->
|
|
|
- </div>
|
|
|
- <!-- //주문 접수 -->
|
|
|
+ </th:block>
|
|
|
+ <!-- //사은품 영역 -->
|
|
|
+ </div>
|
|
|
+ <!-- //주문 접수 -->
|
|
|
+ </th:block>
|
|
|
</th:block>
|
|
|
</th:block>
|
|
|
+ <!-- //주문목록이 있을때 -->
|
|
|
+ <!-- 주문목록이 없을때 -->
|
|
|
+ <th:block th:if="${#lists.size(orderList) < 1}">
|
|
|
+ <div class="nodata">
|
|
|
+ <div class="txt_box">
|
|
|
+ <p>주문내역이 없습니다.<br/></p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </th:block>
|
|
|
+ <!-- //주문목록이 없을때 -->
|
|
|
</div>
|
|
|
</div>
|
|
|
|