result.wxml 568 B

1234567891011
  1. <!--pages/search/result.wxml-->
  2. <t-sticky>
  3. <view class="matchtitle mx-3">
  4. 找到符合关键词[ {{albumInput.filterText}} ] 的商品 <text class="text-red">{{albumTotal}}</text> 条
  5. </view>
  6. </t-sticky>
  7. <view class="px-3 my-3">
  8. <n-goods-list wx:if="{{albums && albums.length > 0}}" view="list" 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="没有更多了" />