12345678910111213141516171819202122 |
- <view class="DrawerPage {{modalName=='viewModal'?'show':''}}">
- <van-search use-action-slot placeholder='请输入搜索关键词' shape='round' bind:search="onSearch" bind:clear="onSearch">
- <view slot="action" class="cuIcon-filter search-right" bindtap="showModal" data-target="viewModal">
- 筛选
- </view>
- </van-search>
- <view class="division" style="height: 20rpx;" />
- <Yl_ListBox id='ListBox' bind:getlist='getList'>
- <List list="{{list}}" hidePrice='{{hidePrice}}' />
- <view style="height: 200rpx;" />
- </Yl_ListBox>
- </view>
- <view class="DrawerClose {{modalName=='viewModal'?'show':''}}" bindtap="hideModal">
- <text class="cuIcon-pullright"></text>
- </view>
- <scroll-view scroll-y class="DrawerWindow {{modalName=='viewModal'?'show':''}}">
- <view style="height:{{CustomBar}}px" />
- <view class="cu-list menu card-menu margin-top-xl margin-bottom-xl shadow-lg bg-white">
- <Filtrate list='{{filtratelist}}' bindhandle='handleFiltrate' />
- </view>
- <view style="height: 200rpx;" />
- </scroll-view>
|