|
|
<!--pages/specialOrderApplication/specialOrderApplication.wxml-->
|
|
|
|
|
|
<view class='searchView'>
|
|
|
<view class='imput_goodsName'>
|
|
|
<picker mode="date" value="{{date}}" start="2018-01-01" end="2037-12-31" bindchange="bindDateChange" fields='month'>
|
|
|
<view class="picker">
|
|
|
{{dates}}
|
|
|
</view>
|
|
|
</picker>
|
|
|
</view>
|
|
|
<view class='storageView' catchtap='creatNew'>新建</view>
|
|
|
</view>
|
|
|
<view class='pageContainer' style='height:{{winHeight-50}}px'>
|
|
|
<scroll-view class="scroll-views" scroll-x="false" scroll-y="true" bindscrolltoupper="cscrollViewScrollUpper" bindscrolltolower="scrollViewScrollLower">
|
|
|
<block wx:for="{{unCheckDataArr}}" wx:key="item">
|
|
|
<template is="specialOrderApplicationTemplate" data="{{item}}" />
|
|
|
</block>
|
|
|
</scroll-view>
|
|
|
</view>
|
|
|
<template name="specialOrderApplicationTemplate">
|
|
|
<view class='listContainer'>
|
|
|
<view class='listItem' catchtap='transToOrderDetail' data-detailitemid='{{item.orderID}}' data-detailitemstate='{{item.orderState}}'>
|
|
|
<view class='topView'>
|
|
|
<view class='goodsNum'>
|
|
|
<text class='goodsIDText'>{{item.orderID}}审核状态</text>
|
|
|
</view>
|
|
|
<view class='goodsMoney'>
|
|
|
<text class='goodsIDText'>{{item.workFlowState}}招远72号店</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class='bottomView'>
|
|
|
<view class='goodsNum'>
|
|
|
<text class='goodsNumText'>{{item.Customer_Name}}单号:32364</text>
|
|
|
</view>
|
|
|
<view class='goodsMoney'>
|
|
|
<text class='goodsMoneyText'>{{item.time}}未审核</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class='horizontallineView'></view>
|
|
|
</view>
|
|
|
</template>
|