|
@@ -655,7 +655,7 @@ export default {
|
|
|
this.formDate.carTypes == '月租车' ? '2' :
|
|
|
this.formDate.carTypes == '充时车' ? '3' :
|
|
|
this.formDate.carTypes == '时租车' ? '4' :
|
|
|
- this.formDate.carTypes == '产全车' ? '5' :
|
|
|
+ this.formDate.carTypes == '产权车' ? '5' :
|
|
|
this.formDate.carTypes == '计次车' ? '6' :
|
|
|
this.formDate.carTypes == '贵宾车' ? '7' :
|
|
|
this.formDate.carTypes == '员工卡' ? '8' : this.formDate.carTypes
|
|
@@ -913,19 +913,21 @@ export default {
|
|
|
tel: this.formDate.tel,
|
|
|
houseId: this.formDate.residentId,
|
|
|
residentId: this.formDate.id,
|
|
|
+ // residentId: this.formDate.ruleId,
|
|
|
remark: this.formDate.remark,
|
|
|
cardType: 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 == '产权车' ? '5' :
|
|
|
this.formDate.carTypes == '计次车' ? '6' :
|
|
|
this.formDate.carTypes == '贵宾车' ? '7' :
|
|
|
this.formDate.carTypes == '员工卡' ? '8' : this.formDate.carTypes,
|
|
|
beginTime: this.formDate.beginTime,
|
|
|
parkId: this.formDate.parkId,
|
|
|
areaName: this.formDate.areaName,
|
|
|
+ ruleId: this.formDate.ruleId,
|
|
|
|
|
|
|
|
|
carLotList: table,
|
|
@@ -962,7 +964,7 @@ export default {
|
|
|
: data.cardType == 2 ? '月租车'
|
|
|
: data.cardType == 3 ? '充时车'
|
|
|
: data.cardType == 4 ? '时租车'
|
|
|
- : data.cardType == 5 ? '产全车'
|
|
|
+ : data.cardType == 5 ? '产权车'
|
|
|
: data.cardType == 6 ? '计次车'
|
|
|
: data.cardType == 7 ? '贵宾卡'
|
|
|
: '员工卡'
|
|
@@ -975,13 +977,12 @@ export default {
|
|
|
this.formDate.parkId = data.parkId
|
|
|
var carLotStr = JSON.parse(data.carLotStr)
|
|
|
for (let i = 0; i < carLotStr.length; i++) {
|
|
|
- // this.tableData[i].parkingArea = carLotStr[i].areaId
|
|
|
this.tableData[i].areaName = carLotStr[i].areaName
|
|
|
this.tableData[i].carType = data.cardType
|
|
|
this.tableData[i].lotCount = carLotStr[i].lotCount
|
|
|
this.tableData[i].positionInformation = carLotStr[i].lotName
|
|
|
this.tableData[i].parkingId = carLotStr[i].parkingId
|
|
|
- // this.formDate.ruleId = carLotStr.ruleId
|
|
|
+ this.formDate.ruleId = carLotStr.ruleId
|
|
|
this.formDate.sort = carLotStr.sequence
|
|
|
}
|
|
|
for (let k = 0; k < data.parkCarDetails.length; k++) {
|
|
@@ -990,10 +991,6 @@ export default {
|
|
|
this.parkingSpaceSetting[k].state = data.parkCarDetails[k].enable == 1 ? '启用' : '禁用'
|
|
|
this.parkingSpaceSetting[k].remarks = data.parkCarDetails[k].remark
|
|
|
|
|
|
- // this.formDate.carType = data.cardType
|
|
|
- // this.form[k].vehicleColor = data.parkCarDetails[k].carNoColor
|
|
|
- // this.form[k].vehicleColors = data.parkCarDetails[k].carColor
|
|
|
- // this.form[k].vehicleBrand = data.parkCarDetails[k].carBrand
|
|
|
}
|
|
|
|
|
|
|