CRM_25-10-15#story#7305,车辆信息梳理的需求-车辆类别选择限制(二)
This commit is contained in:
@ -572,6 +572,14 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.$forceUpdate();
|
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 {
|
} else {
|
||||||
this.vehicleTypes.map(item => {
|
this.vehicleTypes.map(item => {
|
||||||
item.disabled = false;
|
item.disabled = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user