12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <map id="map" scale='14' style="height:{{windowHeight-310}}px" markers="{{markers}}" latitude="{{latitude}}" longitude="{{longitude}}" polyline="{{polyline}}"></map>
- <view class="box" style="height:{{windowHeight-293}}px">
- <view class="title">
- <text>我的骑行</text>
- <text></text>
- </view>
- <view class="list">
- <view>
- <text>订 单 号</text>
- <text>{{date.no}}</text>
- </view>
- <view>
- <text>车 牌 号 </text>
- <text>{{date.bike_no}}</text>
- </view>
- <view>
- <text>订单时间</text>
- <text>{{date.start_use_bike_time}}</text>
- </view>
- <view>
- <text>骑行时长</text>
- <text>{{date.use_bike_time_length}}</text>
- </view>
- <view>
- <text>骑行里程</text>
- <text>{{date.use_bike_distance_length}}</text>
- </view>
- </view>
- <view class="bottom">
- <view class="left">
- <view style="margin-bottom:18rpx;">
- <text style="font-size:24rpx;font-family:PingFang-SC-Regular;color:rgba(42,42,42,1);">调度费用:</text>
- <text style="font-size:24rpx;font-family:PingFang-SC-Regular;color:rgba(24,213,185,1);">¥{{date.dispatch_money}}</text>
- </view>
- <view style="margin-bottom:18rpx;" wx:if="{{url!='/rent/order?no='}}">
- <text style="font-size:24rpx;font-family:PingFang-SC-Regular;color:rgba(42,42,42,1);">优惠费用:</text>
- <text style="font-size:24rpx;font-family:PingFang-SC-Regular;color:rgba(24,213,185,1);">¥{{date.preferential_money}}</text>
- </view>
- <view style="margin-bottom:18rpx;">
- <text style="font-size:24rpx;font-family:PingFang-SC-Regular;color:rgba(42,42,42,1);">骑行费用:</text>
- <text style="font-size:24rpx;font-family:PingFang-SC-Regular;color:rgba(24,213,185,1);">¥{{date.time_money}}</text>
- </view>
- <view style="margin-bottom:18rpx;" wx:if="{{url=='/rent/order?no='}}">
- <text style="font-size:24rpx;font-family:PingFang-SC-Regular;color:rgba(42,42,42,1);">超时费用:</text>
- <text style="font-size:24rpx;font-family:PingFang-SC-Regular;color:rgba(24,213,185,1);">¥{{date.time_money}}</text>
- </view>
- <view>
- <text style="font-size:24rpx;font-family:PingFang-SC-Regular;color:rgba(42,42,42,1);">骑行总计:</text>
- <text style="font-size:24rpx;font-family:PingFang-SC-Regular;color:rgba(24,213,185,1);">¥{{date.total_money}}</text>
- <!-- <text style="font-size:24rpx;font-family:PingFang-SC-Regular;color:rgba(24,213,185,1);" wx:else>¥{{date.total_money}}</text> -->
- </view>
- </view>
- <view class="right" bindtap="payment" wx:if="{{date.status==2}}" style="color:#18D5B9;">
- <text>去支付</text>
- <image src="{{img}}weapp/you.png" style="width:40rpx;height:56rpx;"></image>
- </view>
- <view class="right" wx:if="{{date.status==1}}">
- <text>骑行中</text>
- </view>
- <view class="right" wx:if="{{date.status==3}}">
- <text>订单完成</text>
- </view>
- <view class="right" wx:if="{{date.status==4}}" style="color:#F4915B;">
- <text>订单关闭(不够计费直接关闭)</text>
- </view>
- <view class="right" wx:if="{{date.status==0}}">
- <text>临时停车中</text>
- </view>
- </view>
- </view>
|