index.wxml 818 B

1234567891011121314151617181920
  1. <view class="DrawerPage {{modalName=='viewModal'?'show':''}}">
  2. <Yl_HeadNav styleType="1" sort='{{content.sort}}' isFilter placeholder='搜索' bindonSearch="onSearch" />
  3. <!-- // bindtap="showModal" -->
  4. <view class="total">共{{content.total}}个</view>
  5. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  6. <list list='{{list}}' />
  7. <view style="height: 40px;" />
  8. </Yl_ListBox>
  9. </view>
  10. <view class="DrawerClose {{modalName=='viewModal'?'show':''}}" bindtap="hideModal">
  11. <text class="cuIcon-pullright"></text>
  12. </view>
  13. <scroll-view scroll-y class="DrawerWindow {{modalName=='viewModal'?'show':''}}">
  14. <view class="cu-list menu card-menu margin-top-xl margin-bottom-xl shadow-lg bg-white">
  15. <Filtrate list='{{filtratelist}}' bindhandle='handleFiltrate' />
  16. </view>
  17. <view style="height: 200rpx;" />
  18. </scroll-view>