Browse Source

HL-6146选择生产线时把工位代码清空

hella_online_20241011
yufei_wang 4 months ago
parent
commit
631a6c16b8
  1. 10
      src/views/wms/productionManage/productredress/productredressRequestMain/index.vue

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

@ -171,6 +171,16 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
} else {
const setV = {}
setV[formField] = val[0][searchField]
if('workshopCode'==formField){
//
setV['productionLineCode'] = ''
setV['workStationCode'] = ''
tableData.value = []
}else if('productionLineCode'==formField){
//线
setV['workStationCode'] = ''
tableData.value = []
}
formRef.setValues(setV)
}
})

Loading…
Cancel
Save