You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

116 lines
4.5 KiB
Plaintext

<template name="payDelivery">
<view class="lucky" catchtouchmove="preventTouchMove">
<view class="cy-mask" style="opacity:0.5;"></view>
<view class="lucky-hongbao" style="z-index:101;">
<view class="lucky-hongbao-list">
<scroll-view scroll-y class="{{'lucky-hongbao-scroll '+'lucky-hongbao-scroll'+(luckyData.length>2?'n':luckyData.length)}}">
<view class="listview-container">
<view class="play-item" bindtap="itemTapped">
<view class="dotline">
<!-- 竖线 -->
<view class="line"></view>
<!-- 圆点 -->
<view class=" {{deliveryInfo.orderCreateDate !=''? 'dot':'dot2'}}" style="background:{{deliveryInfo.orderCreateDate !=''? color:''}};"></view>
<!-- 时间戳 -->
</view>
<view class="content">
<text class="course" >订单提交成功</text>
</view>
<view class="content-time">
<text class="play-item-time" wx:if="{{deliveryInfo.orderCreateDate!=''}}}">{{deliveryInfo.orderCreateDate}}</text>
</view>
</view>
<view class="play-item" bindtap="itemTapped">
<view class="dotline">
<!-- 竖线 -->
<view class="line"></view>
<!-- 圆点 -->
<view class="{{deliveryInfo.orderPaidDate !='' ? 'dot':'dot2'}}" style="background:{{deliveryInfo.orderPaidDate !=''? color:''}};"></view>
<!-- 时间戳 -->
</view>
<view class="content">
<text class="course" >订单已支付</text>
</view>
<view class="content-time">
<text class="play-item-time" wx:if="{{deliveryInfo.orderPaidDate!=''}}">{{deliveryInfo.orderPaidDate}}</text>
</view>
</view>
<view class="play-item" bindtap="itemTapped">
<view class="dotline">
<!-- 竖线 -->
<view class="line"></view>
<!-- 圆点 -->
<view class="{{deliveryInfo.orderConfirmDate !='' ?'dot':'dot2' }}" style="background:{{deliveryInfo.orderConfirmDate !=''? color:''}};"></view>
<!-- 时间戳 -->
</view>
<view class="content">
<text class="course" >商家已接单</text>
</view>
<view class="content-time">
<text class="play-item-time" wx:if="{{deliveryInfo.orderConfirmDate!=''}}">{{deliveryInfo.orderConfirmDate}}</text>
</view>
</view>
<view class="play-item" bindtap="itemTapped">
<view class="dotline">
<!-- 竖线 -->
<view class="line"></view>
<!-- 圆点 -->
<view class="{{deliveryInfo.beginTime !='' ?'dot':'dot2' }}" style="background:{{deliveryInfo.beginTime !=''? color:''}};"></view>
<!-- 时间戳 -->
</view>
<view class="content">
<text class="course" >骑士已接单</text>
</view>
<view class="content-time">
<text class="play-item-time" wx:if="{{deliveryInfo.beginTime !=''}}">{{deliveryInfo.beginTime}}</text>
</view>
</view>
<view class="play-item" bindtap="itemTapped">
<view class="dotline">
<!-- 竖线 -->
<view class="line"></view>
<!-- 圆点 -->
<view class=" {{deliveryInfo.ongoingTime !='' ?'dot':'dot2'}} " style="background:{{deliveryInfo.ongoingTime !=''? color:''}};"></view>
<!-- 时间戳 -->
</view>
<view class="content">
<text class="course" >骑士已配送</text>
</view>
<view class="content-time">
<text class="play-item-time" wx:if="{{deliveryInfo.ongoingTime !=''}}">{{deliveryInfo.ongoingTime}}</text>
</view>
</view>
<view class="play-item" bindtap="itemTapped">
<view class="dotline">
<!-- 竖线 -->
<view class="line"></view>
<!-- 圆点 -->
<view class=" {{deliveryInfo.endTime!=''?'dot2':'dot2'}} " style="background:{{deliveryInfo.endTime !=''? color:''}};"></view>
<!-- 时间戳 -->
</view>
<view class="content">
<text class="course" >骑士已送达</text>
</view>
<view class="content-time">
<text class="play-item-time" wx:if="{{deliveryInfo.endTime!=''}}">{{deliveryInfo.endTime}}</text>
</view>
</view>
<view class="listview-buttom">感谢你对我们的支持和信任,期待再次光临 </view>
</view>
</scroll-view>
</view>
<form bindsubmit="closeDelivery" class="lucky-hongbao-close" reportSubmit="true">
<button class="close-btn" formType="submit">
<image src="/components/Lucky/media/close.png"></image>
</button>
</form>
</view>
</view>
</template>