Browse Source

提交

master
yangteng 3 months ago
parent
commit
7e603636cc
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      subpackage/after-sale/deviceInfo/deviceInfo.vue

+ 3
- 3
subpackage/after-sale/deviceInfo/deviceInfo.vue View File

@@ -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();

Loading…
Cancel
Save