12345678910111213141516171819202122 |
- <import src="index.skeleton.wxml" />
- <template is="skeleton" wx:if="{{loading}}" />
- <Yl_HeadNav styleType="1" sort='{{content.sort}}' placeholder='搜索' bindonSearch="onSearch" />
- <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-tab title="审核" />
- <van-tab title="关闭" />
- </van-tabs>
- <view class="tips">
- 共计{{content.total}}单,合计¥{{amount}}
- </view>
- <Yl_ListBox id='ListBox' bind:getlist='getList'>
- <List list="{{list}}" />
- </Yl_ListBox>
- <!-- 新建浮动按钮 -->
- <Float />
- <!-- 筛选条件 -->
- <Yl_Filtrate id='Filtrate' list="{{filter}}" bind:handle="handleFilter" dateRange='{{false}}' />
|