12345678910111213141516171819202122232425262728 |
- <view class="DrawerPage {{modalName=='viewModal'?'show':''}}">
- <import src="index.skeleton.wxml" />
- <template is="skeleton" wx:if="{{loading}}" />
- <Yl_HeadNav styleType="1" sort='{{content.sort}}' placeholder='搜索' bindonSearch="onSearch" isFilter />
- <!-- <van-tabs active="{{ active }}" color='var(--assist)' title-active-color='var(--assist)' bind:change="tabsChange">
- <van-tab title="全部" />
- <van-tab title="新建" />
- <van-tab title="提交" />
- <van-tab title="审核" />
- <van-tab title="复核" />
- </van-tabs> -->
- <view class="tab" />
- <Yl_ListBox id='ListBox' bind:getlist='getList'>
- <view style="height: 20rpx;" />
- <List list="{{list}}" userrole="{{userrole}}" />
- <view style="height: 20px;" />
- </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>
|