productPool.wxml 940 Bytes
<view class="list-container" style="min-height:{{windowHeight}}px;">
    <view class="filter-view">
        <product-list-filter bind:sortchange="filterChange" cur-gender="{{gender}}"></product-list-filter>
    </view>
    <view class="list-view">
        <view class="no-res" wx:if="{{noResult}}">
            <image class="no-res-img" src="https://cdn.yoho.cn/yoho-brand-shop/assets/img/product/no-search-icon.png"></image>
            <view class="no-res-txt">未搜索到任何相关商品</view>
        </view>
        <view wx:if="{{productList.length}}">
            <product-list list="{{productList}}"
                          show-loading="{{showLoading}}"
                          show-no-more="{{allLoaded}}"></product-list>
        </view>
    </view>
    <copyright class="copy-right"></copyright>
    <quick-navigation show-menu="{{true}}" show-back-top="{{showBackTop}}" bindbacktop="backTop"></quick-navigation>
</view>