index.wxml 949 B

123456789101112131415161718192021222324
  1. <view class="DrawerPage {{modalName=='viewModal'?'show':''}}">
  2. <van-search use-action-slot placeholder='请输入搜索关键词' shape='round' bind:search="onSearch" bind:clear="onSearch">
  3. <view slot="action" class="cuIcon-filter search-right" bindtap="showModal" data-target="viewModal">
  4. 筛选
  5. </view>
  6. </van-search>
  7. <view class="division" style="height: 20rpx;" />
  8. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  9. <List list="{{list}}" />
  10. </Yl_ListBox>
  11. </view>
  12. <view class="DrawerClose {{modalName=='viewModal'?'show':''}}" bindtap="hideModal">
  13. <text class="cuIcon-pullright"></text>
  14. </view>
  15. <scroll-view scroll-y class="DrawerWindow {{modalName=='viewModal'?'show':''}}">
  16. <view style="height:{{CustomBar}}px" />
  17. <view class="cu-list menu card-menu margin-top-xl margin-bottom-xl shadow-lg bg-white">
  18. <Filtrate list='{{filtratelist}}' bindhandle='handleFiltrate' />
  19. </view>
  20. <view style="height: 200rpx;" />
  21. </scroll-view>