Browse Source

HL-6284添加清空问题

hella_online_20241024
yufei_wang 1 month ago
parent
commit
0f535a86b3
  1. 11
      src/views/wms/productionManage/productrepair/productrepairRequestMain/index.vue

11
src/views/wms/productionManage/productrepair/productrepairRequestMain/index.vue

@ -240,6 +240,12 @@ const clearSearchInput = (field)=>{
//
formRef.value.formRef.setValues({
productionLineCode: '',
team: '',
})
tableData.value = []
}else if('productionLineCode'==field){
formRef.value.formRef.setValues({
team: '',
})
tableData.value = []
}
@ -298,6 +304,11 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
if('workshopCode' == formField){
//
setV['productionLineCode'] = ''
setV['team'] = ''
tableData.value = []
}else if('productionLineCode' == formField){
//
setV['team'] = ''
tableData.value = []
}
formRef.setValues(setV)

Loading…
Cancel
Save