CRM_25-10-15#story#7305#车辆信息梳理的需求-车辆类别选择限制(二)
This commit is contained in:
@ -675,8 +675,21 @@ export default {
|
|||||||
this.vehicleLicenseInfo.issueDate = frontInfo?.issueDate;
|
this.vehicleLicenseInfo.issueDate = frontInfo?.issueDate;
|
||||||
this.vehicleLicenseInfo.issueAuthority = frontInfo?.seal;
|
this.vehicleLicenseInfo.issueAuthority = frontInfo?.seal;
|
||||||
this.setDefault();
|
this.setDefault();
|
||||||
|
this.checkDisabledItems();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
checkDisabledItems() {
|
||||||
|
let _arr = [];
|
||||||
|
this.selectedOption.map(item => {
|
||||||
|
let _tempArr = this.vehicleTypes.filter(_item => _item.disabled && _item.value == item);
|
||||||
|
_arr = [..._arr, ..._tempArr]
|
||||||
|
})
|
||||||
|
if (_arr.length > 0) {
|
||||||
|
this.$toast(`车辆类别数据不合法:${_arr.map(item => item.name).join('、')}`)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
},
|
||||||
async vehicleBackOcrHandler() { // 行驶证副页 ocr 识别
|
async vehicleBackOcrHandler() { // 行驶证副页 ocr 识别
|
||||||
this.vehicleLicenseInfo.recordNumber = '';
|
this.vehicleLicenseInfo.recordNumber = '';
|
||||||
this.vehicleLicenseInfo.passengerCapacity = '';
|
this.vehicleLicenseInfo.passengerCapacity = '';
|
||||||
@ -829,6 +842,10 @@ export default {
|
|||||||
this.$toast('车辆类别不能为空')
|
this.$toast('车辆类别不能为空')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
let res = this.checkDisabledItems();
|
||||||
|
if(!res) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
if( !this.virtualVehicle ) {
|
if( !this.virtualVehicle ) {
|
||||||
this.$toast('车辆属性不能为空')
|
this.$toast('车辆属性不能为空')
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user