index.wxml 729 B

1234567891011121314151617
  1. <van-search value="{{ content.where.condition }}" shape='round' placeholder="请输入搜索关键词" use-action-slot bind:clear='onClear' bind:search="startSearch">
  2. <navigator url="#" slot="action" class="iconfont icon-shaixuan" bindtap="openFiltrate">
  3. 筛选
  4. </navigator>
  5. </van-search>
  6. <view class="top" />
  7. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  8. <!-- ,未读{{unreadNum||0}}条 -->
  9. <view class="unread">总共{{total}}条</view>
  10. <navigator class="list-box" url="#" wx:for="{{list}}" data-item="{{item}}" bindtap="toDetails">
  11. <Item item="{{item}}" />
  12. </navigator>
  13. <My_empty wx:if="{{!list.length}}" />
  14. </Yl_ListBox>
  15. <Yl_Filtrate1 show='{{filtrate}}' list="{{filtratelist}}" bindhandle="handleFilter" />