| 12345678910111213141516171819202122232425 | 
							- <!--pages/order/index.wxml-->
 
- <view class="sg-container">
 
-   <view class="sg-top-box sg-fix-top sg-white-bg">
 
-     <view class="sg-search-box sg-flex sg-align-center">
 
-       <van-dropdown-menu>
 
-         <van-dropdown-item value="{{ work_point_id }}" options="{{ work_points }}" bind:change="onDropChange" data-name="work_point_id"/>
 
-       </van-dropdown-menu>
 
-       <van-search value="{{ keyword }}" placeholder="请输入订单号或提交人搜索" use-right-icon-slot class="sg-flex-grow" left-icon="none" bind:change="onDropChange" data-name="keyword">
 
-         <van-icon name="search" class="sg-index-color sg-icon" slot="right-icon" bindtap="search"></van-icon>
 
-       </van-search>
 
-     </view>
 
-     <view class="sg-tabs sg-flex sg-align-center sg-white-bg sg-pad sg-bottom-border sg-top-border sg-font-small">
 
-       <view wx:for="{{tabs}}" wx:key="index" class="sg-tab {{tabIndex == index ? 'sg-selected' : ''}}"
 
-         bindtap="switchTab" data-index="{{index}}" hidden="{{ type=='check' && index > 2 }}">{{ item }}</view>
 
-     </view>
 
-   </view>
 
-   <view class="sg-list-box sg-pad">
 
-     <view class="sg-list" wx:for="{{list}}" hidden="{{tabIndex != index}}" wx:key="index">
 
-       <block wx:for="{{item}}" wx:for-item="i_item" wx:for-index="i_index" wx:key="i_index">
 
-         <out-order-item item="{{i_item}}" bind:update="search" role="{{role}}"></out-order-item>
 
-       </block>
 
-     </view>
 
-   </view>
 
-   <van-dialog id="van-dialog" />
 
- </view>
 
 
  |