|
@@ -1024,12 +1024,17 @@ export default {
|
|
|
lotCount: this.tableData[i].num,
|
|
|
lotName: this.tableData[i].positionInformation,
|
|
|
parkingIds: this.tableData[i].parkingId,
|
|
|
- carType: '',
|
|
|
+ carType: this.formDate.carTypes == '临时车' ? '0' :
|
|
|
+ this.formDate.carTypes == 'VIP车' ? '1' :
|
|
|
+ this.formDate.carTypes == '月租车' ? '2' :
|
|
|
+ this.formDate.carTypes == '充时车' ? '3' :
|
|
|
+ this.formDate.carTypes == '时租车' ? '4' :
|
|
|
+ this.formDate.carTypes == '产权车' ? '5' :
|
|
|
+ this.formDate.carTypes == '计次车' ? '6' :
|
|
|
+ this.formDate.carTypes == '贵宾车' ? '7' :
|
|
|
+ this.formDate.carTypes == '员工卡' ? '8' : this.formDate.carTypes,
|
|
|
ruleId: this.formDate.ruleId,
|
|
|
sequence: this.formDate.sort,
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
})
|
|
|
|
|
|
this.formDate.areaName = this.tableData[i].areaName
|
|
@@ -1054,9 +1059,10 @@ export default {
|
|
|
this.fullCarNoStr = this.parkingSpaceSetting[k].licensePlate + this.parkingSpaceSetting[k].license;
|
|
|
this.plateNoInfo.push((this.parkingSpaceSetting[k].licensePlate + this.parkingSpaceSetting[k].license));
|
|
|
|
|
|
- for (let j = 0; j < table.length; j++) {
|
|
|
- table[j].carType = this.formDate.carType;
|
|
|
- }
|
|
|
+ // for (let j = 0; j < table.length; j++) {
|
|
|
+ // debugger
|
|
|
+ // table[j].carType = this.formDate.carType;
|
|
|
+ // }
|
|
|
|
|
|
}
|
|
|
|