index.wxml 1.1 KB

123456789101112131415161718192021222324252627
  1. <view class="DrawerPage {{modalName=='viewModal'?'show':''}}">
  2. <import src="index.skeleton.wxml" />
  3. <template is="skeleton" wx:if="{{loading}}" />
  4. <Yl_HeadNav styleType="1" sort='{{content.sort}}' placeholder='搜索' bindonSearch="onSearch" isFilter />
  5. <van-tabs class="tab" active="{{ active }}" color='var(--assist)' title-active-color='var(--assist)' bind:change="tabsChange">
  6. <van-tab title="全部" />
  7. <van-tab title="新建" />
  8. <van-tab title="提交" />
  9. <van-tab title="审核" />
  10. <van-tab title="复核" />
  11. </van-tabs>
  12. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  13. <view style="height: 20rpx;" />
  14. <List list="{{list}}" userrole="{{userrole}}" />
  15. <view style="height: 20px;" />
  16. </Yl_ListBox>
  17. </view>
  18. <view class="DrawerClose {{modalName=='viewModal'?'show':''}}" bindtap="hideModal">
  19. <text class="cuIcon-pullright"></text>
  20. </view>
  21. <scroll-view scroll-y class="DrawerWindow {{modalName=='viewModal'?'show':''}}">
  22. <view class="cu-list menu card-menu margin-top-xl margin-bottom-xl shadow-lg bg-white">
  23. <Filtrate list='{{filtratelist}}' bindhandle='handleFiltrate' />
  24. </view>
  25. <view style="height: 200rpx;" />
  26. </scroll-view>