1234567891011121314151617181920 |
- <view class="DrawerPage {{modalName=='viewModal'?'show':''}}">
- <Yl_HeadNav styleType="1" sort='{{content.sort}}' isFilter placeholder='搜索' bindonSearch="onSearch" />
- <!-- // bindtap="showModal" -->
- <view class="total">共{{content.total}}个</view>
- <Yl_ListBox id='ListBox' bind:getlist='getList'>
- <list list='{{list}}' />
- <view style="height: 40px;" />
- </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 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>
|