index.wxml 1.1 KB

1234567891011121314151617181920212223242526
  1. <import src="index.skeleton.wxml" />
  2. <template is="skeleton" wx:if="{{loading}}" />
  3. <Yl_HeadNav styleType="1" sort='{{content.sort}}' placeholder='搜索' bindonSearch="onSearch" />
  4. <van-tabs active="{{ active }}" color='var(--assist)' title-active-color='var(--assist)' bind:change="tabsChange">
  5. <van-tab title="全部" name='' />
  6. <van-tab title="新建" name='新建' />
  7. <van-tab title="提交" name='提交' />
  8. <van-tab title="审核" name='审核' />
  9. </van-tabs>
  10. <!-- <view class="total">
  11. <view class="text">共{{content.total}}条</view>
  12. <view class="to" bindtap="toAdd">去新建</view>
  13. </view> -->
  14. <view class="total" style="height: 20rpx;"></view>
  15. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  16. <List list="{{list}}" />
  17. <view style="height: 150rpx;"></view>
  18. </Yl_ListBox>
  19. <!-- 新建浮动按钮 -->
  20. <!-- <Yl_FloatingButton bindtap="toAdd" /> -->
  21. <view class="footer">
  22. <van-button custom-class='but' bindtap="toAdd">新建凭证</van-button>
  23. </view>
  24. <!-- 筛选条件 -->
  25. <Yl_Filtrate id='Filtrate' list="{{filter}}" bind:handle="handleFilter" dateRange='{{true}}' />