|
@@ -2,17 +2,17 @@
|
|
<view class="wrap">
|
|
<view class="wrap">
|
|
<view class="car-info u-flex">
|
|
<view class="car-info u-flex">
|
|
<view class="car-info-img">
|
|
<view class="car-info-img">
|
|
- <u-image src="../../../static/img/default-car.png" width="100%" height="100%"></u-image>
|
|
|
|
|
|
+ <u-image :src="vehicleImage" mode="aspectFit" width="100%" height="100%"></u-image>
|
|
</view>
|
|
</view>
|
|
<view class="car-info-text u-flex-1">
|
|
<view class="car-info-text u-flex-1">
|
|
<view class="text-item">
|
|
<view class="text-item">
|
|
<view class="car">{{ orderVehicleNo }}</view>
|
|
<view class="car">{{ orderVehicleNo }}</view>
|
|
<view class="position">车位:{{orderSpaceName}}</view>
|
|
<view class="position">车位:{{orderSpaceName}}</view>
|
|
</view>
|
|
</view>
|
|
- <view class="text-item" style="color: #3192FB;">临时卡</view>
|
|
|
|
|
|
+ <!-- <view class="text-item" style="color: #3192FB;">临时卡</view> -->
|
|
<view class="text-item u-flex u-flex u-row-between">
|
|
<view class="text-item u-flex u-flex u-row-between">
|
|
<view class="">余额:<span class="balance">暂无</span></view>
|
|
<view class="">余额:<span class="balance">暂无</span></view>
|
|
- <view class="recharge" @click="$refs.uToast.show({title: '建设中'})">充值</view>
|
|
|
|
|
|
+ <!-- <view class="recharge" @click="$refs.uToast.show({title: '建设中'})">充值</view> -->
|
|
</view>
|
|
</view>
|
|
<view class="text-item">类型:小车(计时)</view>
|
|
<view class="text-item">类型:小车(计时)</view>
|
|
</view>
|
|
</view>
|
|
@@ -50,6 +50,7 @@
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ vehicleImage:'/static/img/default-car.png',
|
|
showOrderDetails:false,//是否线上订单细节
|
|
showOrderDetails:false,//是否线上订单细节
|
|
content:'',
|
|
content:'',
|
|
orderID:'',
|
|
orderID:'',
|
|
@@ -89,6 +90,7 @@
|
|
// });
|
|
// });
|
|
this.payAmount = res.data.payAmount;
|
|
this.payAmount = res.data.payAmount;
|
|
this.payStatus = res.data.payStatus;
|
|
this.payStatus = res.data.payStatus;
|
|
|
|
+ this.vehicleImage =res.data.vehicleImage;
|
|
this.content = `
|
|
this.content = `
|
|
<dl><dt>停车时长:</dt> <dd>` + this.frontDuration + `</dd></dl>`
|
|
<dl><dt>停车时长:</dt> <dd>` + this.frontDuration + `</dd></dl>`
|
|
+ `<dl><dt>账户类型:</dt><dd>` + '暂无' + `</dd></dl>`
|
|
+ `<dl><dt>账户类型:</dt><dd>` + '暂无' + `</dd></dl>`
|