index.wxml 501 B

123456789101112
  1. <view>
  2. <!-- <view style="padding: 0 39rpx;">
  3. <view class="pb-4 text-center text-bold">
  4. 为您推荐
  5. </view>
  6. </view> -->
  7. <view class="px-3">
  8. <n-goods-list wx:if="{{albums && albums.length > 0}}" items="{{albums}}" bind:click="gotoGoodsDetail" />
  9. <t-empty wx:else icon="chart-bubble" description="暂无活动商品信息" t-class="mt-7" />
  10. </view>
  11. <n-load-more wx:if="{{albums && albums.length > 0}}" status="{{loadMoreStatus}}" no-more-text="没有更多了" />
  12. </view>