index.wxml 550 B

12345678910
  1. <view class="goods-list-container">
  2. <view class="empty-wrap" wx:if="{{goodsList.length === 0 && hasLoaded}}">
  3. <t-empty t-class="empty-tips" size="240rpx" description="暂无相关商品" />
  4. </view>
  5. <view class="category-goods-list" wx:if="{{goodsList.length}}">
  6. <goods-list wr-class="wr-goods-list" goodsList="{{goodsList}}" bind:click="gotoGoodsDetail" bind:addcart="handleAddCart" />
  7. </view>
  8. <load-more wx:if="{{goodsList.length > 0}}" status="{{loadMoreStatus}}" no-more-text="没有更多了" />
  9. </view>
  10. <t-toast id="t-toast" />