best-for-you.phtml 748 Bytes
{{#if bestForYou}}
    <div id="best-for-you" class="best-for-you">
        <div class="top-title">
            <span>为您优选</span>
            <label class="change-btn">换一批</label>
        </div>
        <div class="product-wrap">
            <ul class="clearfix">
                {{# bestForYou}}
                    <li>
                        <a href="{{href}}" data-id="{{productId}}" target="_blank">
                            <img class="thumb" src="{{thumb}}">
                            <p class="name">{{name}}</p>
                            <span class="price"{{price}}</span>
                        </a>
                    </li>
                {{/ bestForYou}}
            </ul>
        </div>
    </div>
{{/if}}