|
|
@ -197,6 +197,24 @@ const openForm = (type: string, row?: any) => { |
|
|
|
item.componentProps.disabled = true |
|
|
|
} |
|
|
|
}) |
|
|
|
} else { |
|
|
|
SupplierAddressModelDeli.allSchemas.formSchema.forEach(item => { |
|
|
|
if(item.field == 'modelShow'){ |
|
|
|
item.componentProps.options =[] |
|
|
|
} |
|
|
|
if(item.field == 'supplierCode'){ |
|
|
|
item.componentProps.disabled = false |
|
|
|
} |
|
|
|
if(item.field == 'supplierName'){ |
|
|
|
item.componentProps.disabled = false |
|
|
|
} |
|
|
|
if(item.field == 'supplierAddress'){ |
|
|
|
item.componentProps.disabled = true |
|
|
|
} |
|
|
|
if(item.field == 'modelShow'){ |
|
|
|
item.componentProps.disabled = false |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
console.log(row) |
|
|
|
basicFormRef.value.open(type, row) |
|
|
|