index.wxml 703 B

123456789101112131415161718192021
  1. <van-search placeholder="请输入搜索关键词" focus bind:search="search" use-right-icon-slot>
  2. <van-icon slot="right-icon" name="scan" bind:click="searchscan" />
  3. </van-search>
  4. <van-empty wx:if="{{ !list || list.length == 0 }}" description="暂无历史搜索" />
  5. <van-cell-group wx:if="{{ list && list.length > 0 }}" title="历史搜索">
  6. <van-cell wx:for="{{list}}" wx:key="*this">
  7. <view slot="title">
  8. <view data-idx="{{ index }}" bindtap="go">{{ item }}</view>
  9. </view>
  10. <van-tag
  11. closeable
  12. size="medium"
  13. type="primary"
  14. id="primary"
  15. data-idx="{{ index }}"
  16. bind:close="onClose"
  17. >
  18. 删除
  19. </van-tag>
  20. </van-cell>
  21. </van-cell-group>