Blame view

template/m.yohobuy.com/partials/product/recommend-content.phtml 612 Bytes
ccbikai authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<div class="title">为您优选新品</div>
<div id="swiper-recommend" class="swiper-container">
    <ul class="swiper-wrapper swiper-wrapper-recommend">
        {{#recommendList}}
        <li class="swiper-slide">
            <img class="swiper-lazy img-box" data-src="{{thumb}}">
            <div class="price">
                <span class="sale-price {{^price}}no-price{{/price}}">¥{{salePrice}}</span>
                {{#price}}<span class="old-price">¥{{.}}</span>{{/price}}
            </div>
            <div class="swiper-lazy-preloader"></div>
        </li>
        {{/recommendList}}
    </ul>
</div>