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.
 

36 lines
1.5 KiB

<!--pages/specialOrderApplication/specialOrderApplication.wxml-->
<view class='searchView'>
<view class='imput_goodsName' catchtap='goToSearch'>选择搜索条件</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>