index.wxml 864 B

12345678910111213141516171819202122
  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="全部" />
  6. <van-tab title="新建" />
  7. <van-tab title="提交" />
  8. <van-tab title="待确认" />
  9. <van-tab title="交期确认" />
  10. <van-tab title="审核" />
  11. <van-tab title="关闭" />
  12. </van-tabs>
  13. <view class="tips">
  14. 共计{{content.total}}单,合计¥{{amount}}
  15. </view>
  16. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  17. <List list="{{list}}" />
  18. </Yl_ListBox>
  19. <!-- 新建浮动按钮 -->
  20. <Float />
  21. <!-- 筛选条件 -->
  22. <Yl_Filtrate id='Filtrate' list="{{filter}}" bind:handle="handleFilter" dateRange='{{false}}' />