- <!--pages/search/result.wxml-->
- <t-sticky>
- <view class="matchtitle mx-3">
- 找到符合关键词[ {{albumInput.filterText}} ] 的商品 <text class="text-red">{{albumTotal}}</text> 条
- </view>
- </t-sticky>
- <view class="px-3 my-3">
- <n-goods-list wx:if="{{albums && albums.length > 0}}" view="list" items="{{albums}}" bind:click="gotoGoodsDetail" />
- <t-empty wx:else icon="chart-bubble" description="暂无相关内容" t-class="mt-7" />
- </view>
- <n-load-more wx:if="{{albums && albums.length > 0}}" status="{{loadMoreStatus}}" no-more-text="没有更多了" />
|