|
|
@@ -362,7 +362,7 @@ |
|
|
|
obu.approvedCount = res.approvedCount; |
|
|
|
obu.axleCount = res.axleCount; |
|
|
|
obu.axleDistance = res.axleDistance; |
|
|
|
obu.engineNum = res.engineNumber; |
|
|
|
obu.engineNum = res.engineNumber.replace(/\u0000/g, ''); |
|
|
|
obu.type = res.collectionType; |
|
|
|
obu.typeStr = getVehicleType(res.collectionType); |
|
|
|
obu.userType = res.userType; |
|
|
@@ -371,11 +371,11 @@ |
|
|
|
}else if(res.userType == 6){ |
|
|
|
obu.userTypeStr = "公务车" ; |
|
|
|
} |
|
|
|
obu.vehiclePlate = res.vehiclePlate; |
|
|
|
obu.vehiclePlate = res.vehiclePlate.replace(/\u0000/g, ''); |
|
|
|
//获取车牌颜色 |
|
|
|
obu.vehiclePlateColor = res.vehiclePlateColor; |
|
|
|
obu.vehiclePlateColorStr = getVehiclePlateColor(res.vehiclePlateColor); |
|
|
|
obu.vin = res.vin; |
|
|
|
obu.vin = res.vin.replace(/\u0000/g, ''); |
|
|
|
obu.wheelCount = res.wheelsCount; |
|
|
|
obu.outsideDimensions = res.carLong + "x" + res.carWidth + "x" + res.carHeight |
|
|
|
getObuList(); |