You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

52 lines
2.3 KiB

<!--pages/order/order.wxml-->
<view class="swiper-tab">
<view class="swiper-tab-list {{currentTab==0 ? 'on' : ''}}" data-current="0" bindtap="swichNav">未审核</view>
<view class="swiper-tab-list {{currentTab==1 ? 'on' : ''}}" data-current="1" bindtap="swichNav">已审核</view>
</view>
<swiper current="{{currentTab}}" class="swiper-box" style='height:{{winHeight -95}}px' duration="300" bindchange="bindChange">
<!-- 未审核 -->
<swiper-item class="swiper-items1">
<scroll-view scroll-y="true" class='scroll-views' style='height:{{winHeight -95}}px' bindscrolltolower="unCheckedScrollLower">
<view class="custmer_list_view_main" wx:for="{{unCheckDataArr}}" wx:key="item">
<view class='custmer_list_view' catchtap='itemclick' bindlongpress="longPressDelete" data-orderid='{{item.orderID}}'>
<view class='phone_h'>
<text class='text_name'>{{item.Customer_Name}}</text>
<text style='color:{{item.color}}' class='text_state'>流程状态:{{item.workFlowName}}</text>
</view>
<view class='phone_h'>
<text class='text_id'>No.{{item.orderID}}</text>
<text class='text_time'>发货时间:{{item.time}}</text>
</view>
</view>
<view class='view_line_main'>
</view>
</view>
</scroll-view>
</swiper-item>
<swiper-item class="swiper-items2">
<scroll-view scroll-y="true" class='scroll-views' style='height:{{winHeight -43}}px' bindscrolltolower="checkedScrollLower">
<view class="custmer_list_view_main" wx:for="{{checkedDataArr}}" wx:key="item">
<view class='custmer_list_view' catchtap='itemclick' data-orderid='{{item.orderID}}'>
<view class='phone_h'>
<text class='text_name'>{{item.Customer_Name}}</text>
<text style='color:{{item.color}}' class='text_state'>流程状态:{{item.workFlowName}}</text>
</view>
<view class='phone_h'>
<text class='text_id'>No.{{item.orderID}}</text>
<text class='text_time'>发货时间:{{item.time}}</text>
</view>
</view>
<view class='view_line_main'>
</view>
</view>
</scroll-view>
</swiper-item>
</swiper>
<image class='xinjian' bindtap="createNew" src="/imgs/create.png"></image>
<button class='chose' catchtap='chose'>筛选</button>