|
@@ -3,26 +3,27 @@
|
|
|
<u-navbar title="预约单详情" :custom-back="customback" >
|
|
|
|
|
|
</u-navbar>
|
|
|
- <view class="iconfont tittle-font">
|
|
|
+ <!-- <view class="iconfont tittle-font">
|
|
|

|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
<u-alert-tips type="warning" v-if="detail.status==0" :description="description"></u-alert-tips>
|
|
|
|
|
|
<view class="reverse-time">
|
|
|
- <view class="time">
|
|
|
+ <view class="time refused" v-if="detail.status==4||detail.status==5||detail.status==6">
|
|
|
+ {{detail.statusText}}
|
|
|
+ </view>
|
|
|
+ <view class="time" v-else >
|
|
|
预留{{detail.reserveMinutes}}分钟
|
|
|
- <view class="img-box" v-if="detail.status==1">
|
|
|
- <img src="@/assets/img/finished.png" alt="">
|
|
|
+ <view class="img-box" >
|
|
|
+ <img src="@/assets/img/finished.png" v-if="detail.status==1" alt="">
|
|
|
<!-- 已取消 -->
|
|
|
- <!-- <img src="../../../static/img/canc.png" alt=""> -->
|
|
|
+ <img src="../../../static/img/canc.png" v-if="detail.status==3" alt=""> -
|
|
|
<!-- 已完成-->
|
|
|
- <!-- <img src="../../../static/img/f.png" alt=""> -->
|
|
|
+ <img src="../../../static/img/f.png" v-if="detail.status==2" alt="">
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 已取消/已拒绝 -->
|
|
|
- <!-- <view class="time refused">
|
|
|
- 已取消
|
|
|
- </view> -->
|
|
|
+ <!-- -->
|
|
|
<view class="details-item">
|
|
|
<view class="item">
|
|
|
<view class="item-name">
|
|
@@ -55,7 +56,7 @@
|
|
|
</view>
|
|
|
<!-- 充电桩详情 -->
|
|
|
<view class="charge-pile">
|
|
|
- <view class="box" @click="gotoUrl('pages/searchPile/stationAndPile/stationDetails?id=3865b3a3-13fd-461a-8145-ee9711df35a2')">
|
|
|
+ <view class="box" @click="gotoUrl('pages/searchPile/stationAndPile/stationDetails?id='+chargingDevice.stationId)">
|
|
|
|
|
|
<view class="name ellipsis">
|
|
|
{{chargingDevice.stationName}}/{{chargingDevice.name}}
|
|
@@ -98,6 +99,40 @@
|
|
|
{{price.servicePrice}}元/度
|
|
|
</view>
|
|
|
</view>
|
|
|
+
|
|
|
+ <view class="item" v-if="detail.status==3" >
|
|
|
+ <view class="item-name" >
|
|
|
+
|
|
|
+ 取消时间
|
|
|
+ </view>
|
|
|
+ <view class="item-content">
|
|
|
+ {{detail.updateTime}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <template v-if="detail.status==5||detail.status==6" >
|
|
|
+ <view class="item" >
|
|
|
+ <view class="item-name" >
|
|
|
+
|
|
|
+ 过期时间
|
|
|
+ </view>
|
|
|
+ <view class="item-content">
|
|
|
+ {{detail.updateTime}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="item" >
|
|
|
+ <view class="item-name" >
|
|
|
+
|
|
|
+ 过期原因
|
|
|
+ </view>
|
|
|
+ <view class="item-content">
|
|
|
+ {{detail.remark}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </template>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 底部按钮 -->
|