This commit is contained in:
2025-12-04 13:57:27 +08:00
parent d178be1acd
commit 05ac89814c

View File

@@ -744,6 +744,8 @@ export default {
this.vehicleLicenseInfo.overallDimension = '';
this.vehicleLicenseInfo.tractionWeight = '';
this.vehicleLicenseInfo.backPlateNo = ''; // 行驶证副页 车牌号,仅用来判断 ocr 识别是否成功
this.vehicleLicenseInfo.energySign = '';
this.vehicleLicenseInfo.marks = ''
let res = await ocrHandler({
ocrType: 3,
imageUrl: this.vehicleLicenseBack,
@@ -759,6 +761,8 @@ export default {
this.vehicleLicenseInfo.overallDimension = backInfo?.externalSize;
this.vehicleLicenseInfo.tractionWeight = backInfo?.TotalQuasiMass;
this.vehicleLicenseInfo.backPlateNo = backInfo?.plateNo;
this.vehicleLicenseInfo.energySign = backInfo?.fuelType;
this.vehicleLicenseInfo.marks = backInfo?.marks
}
console.log('this.vehicle', this.vehicleLicenseInfo)
},