|
|
<!--pages/myCars/myCars.wxml-->
|
|
|
<scroll-view scroll-x="false" scroll-y="true" class='scroll-views' bindscrolltoupper="unCheckedScrollUpper" bindscrolltolower="unCheckedScrollLower">
|
|
|
<block wx:for="{{carsList}}" wx:key="item">
|
|
|
<template is="outStoreOrderTemplate" data="{{item}}" />
|
|
|
</block>
|
|
|
</scroll-view>
|
|
|
|
|
|
|
|
|
<template name="outStoreOrderTemplate">
|
|
|
<view class='listContainer'>
|
|
|
<view class='listItem' catchtap='transToCarsDetail' 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'>电话:13448957984{{item.workFlowState}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class='bottomView'>
|
|
|
<view class='goodsNum'>
|
|
|
<text class='goodsNumText'>车主:1000{{item.Customer_Name}}</text>
|
|
|
</view>
|
|
|
<view class='goodsMoney'>
|
|
|
<text class='goodsMoneyText'>车牌号:123556{{item.time}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class='horizontallineView'></view>
|
|
|
</view>
|
|
|
</template>
|