|
|
<!--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' bindlongpress="handleLongPress" catchtap='transToCarsDetail' data-detailitem='{{item}}' data-cardetailid='{{item.CarDetail_ID}}'>
|
|
|
<view class='topView'>
|
|
|
<view class='goodsNum'>
|
|
|
<text class='goodsIDText'>司机:{{item.DriverName}}</text>
|
|
|
</view>
|
|
|
<view class='goodsMoney'>
|
|
|
<text class='goodsIDText'>电话:{{item.Phone}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class='bottomView'>
|
|
|
<view class='goodsNum'>
|
|
|
<text class='goodsNumText'>车主:{{item.CarOwner}}</text>
|
|
|
</view>
|
|
|
<view class='goodsMoney'>
|
|
|
<text class='goodsMoneyText'>车牌号:{{item.CarNumber}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class='horizontallineView'></view>
|
|
|
</view>
|
|
|
</template>
|