favorite.phtml 1013 Bytes
{{> layout/header}}
<div class="yoho-favorite-page yoho-page">
    {{# favorite}}
    <ul id="fav-tab" class="fav-tab {{# brandTab}}brand-tab{{/ brandTab}}">
        <li>收藏的商品</li>
        <li>收藏的品牌</li>
    </ul>
    <div class="fav-content" id="fav-content">
        <div class="fav-type">
            <ul class="fav-product-list">
                {{> home/favorite_product_list}}
            </ul>

            {{^ hasFavProduct}}
            <span class="fav-null">您暂无收藏任何商品</span>
            <a class="go-shopping" href="{{productUrl}}">随便逛逛</a>
            {{/ hasFavProduct}}
        </div>
        <div class="fav-type">
			{{> home/favorite_brand_list}}

            {{^ hasFavBrand}}
            <span class="fav-null">您暂无收藏任何品牌</span>
            <a class="go-shopping" href="{{brandUrl}}">随便逛逛</a>
            {{/ hasFavBrand}}
        </div>
    </div>
    {{/ favorite}}
</div>
{{> layout/footer}}