|
@@ -103,6 +103,8 @@ export default {
|
|
|
},
|
|
|
created () {
|
|
|
this.interiorCar[0].label = this.params.row.userName;
|
|
|
+ // roomNumber
|
|
|
+ this.interiorCar[1].label = this.params.row.roomNumber;
|
|
|
this.interiorCar[2].label = this.params.row.fullCarNoStr;
|
|
|
this.interiorCar[3].label = this.params.row.carType == 0 ? '临时车'
|
|
|
: this.params.row.carType == 1 ? 'VIP车'
|
|
@@ -126,12 +128,12 @@ export default {
|
|
|
: this.params.row.carType == 5 ? '产权车'
|
|
|
: this.params.row.carType == 6 ? '计次车'
|
|
|
: this.params.row.carType == 7 ? '贵宾卡'
|
|
|
- : this.params.row.carType == 8 ? '员工卡' : '--';
|
|
|
+ : this.params.row.carType == 8 ? '员工卡' : '-';
|
|
|
this.rechargeDetails[2].label = (this.params.row.chargeNumber + '月');
|
|
|
- this.rechargeDetails[3].label = (this.params.row.credit + '月') || '--';
|
|
|
+ this.rechargeDetails[3].label = (this.params.row.credit + '月') || '-';
|
|
|
// payTime
|
|
|
this.rechargeDetails[4].label = this.params.row.payTime;
|
|
|
- this.rechargeDetails[6].label = this.params.row.remark;
|
|
|
+ this.rechargeDetails[6].label = this.params.row.remark || '-';
|
|
|
this.rechargeDetails[7].label = this.params.row.orderNo;
|
|
|
this.rechargeDetails[8].label = this.params.row.payTime;
|
|
|
// opreatName
|