Browse Source

YT-1392发料申请编辑页面生产线代码和工位代码不应该可以编辑

intex_online20241228
张立 3 months ago
parent
commit
ae713a5970
  1. 16
      src/views/wms/issueManage/issue/issueRequestMain/index.vue

16
src/views/wms/issueManage/issue/issueRequestMain/index.vue

@ -429,6 +429,14 @@ 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 == 'productionLineCode') {
itemColumns.componentProps.isSearchList = false
itemColumns.componentProps.disabled = true
}
if(itemColumns.field == 'workStationCode') {
itemColumns.componentProps.isSearchList = false
itemColumns.componentProps.disabled = true
}
}) })
} else { } else {
// tableform // tableform
@ -437,6 +445,14 @@ 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 == 'productionLineCode') {
itemColumns.componentProps.isSearchList = true
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