CRM_25-10-15#story#7305,车辆信息梳理的需求-车辆类别选择限制(二)

This commit is contained in:
2025-09-25 17:47:37 +08:00
parent d1726e3041
commit f51b0a2aab

View File

@ -572,6 +572,14 @@ export default {
}
})
this.$forceUpdate();
} else if( this.vehicleLicenseInfo?.vehicleType?.includes('载货') || this.vehicleLicenseInfo?.vehicleType?.includes('中型') || this.vehicleLicenseInfo?.vehicleType?.includes('重型')) {
this.vehicleTypes.map(item => {
if( item.value == 1 || item.value == 9 ) {
item.disabled = true;
} else {
item.disabled = false;
}
})
} else {
this.vehicleTypes.map(item => {
item.disabled = false;