liuchen864 4 days ago
parent
commit
3cc1cd6f30
  1. 9
      src/views/wms/productionManage/productredress/productredressRequestMain/index.vue

9
src/views/wms/productionManage/productredress/productredressRequestMain/index.vue

@ -360,7 +360,12 @@ const openForm =async (type: string, row?: number) => {
itemColumns.componentProps.isSearchList = false itemColumns.componentProps.isSearchList = false
itemColumns.componentProps.disabled = true itemColumns.componentProps.disabled = true
} }
if(itemColumns.field == 'workStationCode') {
itemColumns.componentProps.isSearchList = false
itemColumns.componentProps.disabled = true
}
}) })
} else { } else {
// tableform // tableform
ProductredressRequestMain.allSchemas.formSchema.map(itemColumns => { ProductredressRequestMain.allSchemas.formSchema.map(itemColumns => {
@ -368,6 +373,10 @@ const openForm =async (type: string, row?: number) => {
itemColumns.componentProps.isSearchList = true itemColumns.componentProps.isSearchList = true
itemColumns.componentProps.disabled = false itemColumns.componentProps.disabled = false
} }
if(itemColumns.field == 'workStationCode') {
itemColumns.componentProps.isSearchList = true
itemColumns.componentProps.disabled = false
}
}) })
} }
formRef.value.open(type, row) formRef.value.open(type, row)

Loading…
Cancel
Save