|
|
<!--pages/saleOutStore/saleOutStore.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 -55}}px' duration="300" bindchange="bindChange">
|
|
|
<!-- 未审核 -->
|
|
|
<swiper-item class="swiper-items1">
|
|
|
<scroll-view scroll-y="true" class='scroll-views' bindscrolltolower="unCheckedScrollLower">
|
|
|
|
|
|
<block wx:for="{{unCheckDataArr}}" wx:for-item="item" wx:key="item">
|
|
|
<template is="outStoreOrderTemplate" data="{{item}}"/>
|
|
|
</block>
|
|
|
|
|
|
</scroll-view>
|
|
|
</swiper-item>
|
|
|
|
|
|
<swiper-item class="swiper-items2">
|
|
|
<scroll-view scroll-y="true" class='scroll-views' bindscrolltolower="checkedScrollLower">
|
|
|
|
|
|
<block wx:for="{{checkedDataArr}}" wx:for-item="item" wx:key="item">
|
|
|
<template is="outStoreOrderTemplate" data="{{item}}"/>
|
|
|
</block>
|
|
|
|
|
|
</scroll-view>
|
|
|
</swiper-item>
|
|
|
</swiper>
|
|
|
|
|
|
<template name="outStoreOrderTemplate">
|
|
|
<view class='listContainer'>
|
|
|
<view class='listItem' catchtap='transToOrderDetail' data-detailitemid='{{item.ID}}'>
|
|
|
<view class='topView'>
|
|
|
<view class='goodsNum'>
|
|
|
<text class='goodsIDText'>{{item.Customer_Name}}</text>
|
|
|
</view>
|
|
|
<view class='goodsMoney'>
|
|
|
<text class='goodsIDText'>业务员:{{item.Employee_Name}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class='bottomView'>
|
|
|
<view class='goodsNum'>
|
|
|
<text class='goodsNumText'>数量:{{item.TotalNumber}}</text>
|
|
|
</view>
|
|
|
<view class='goodsMoney'>
|
|
|
<text class='goodsMoneyText'>日期:{{item.LoadTime}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class='horizontallineView'></view>
|
|
|
</view>
|
|
|
</template>
|