|
|
@ -148,8 +148,8 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row) => |
|
|
|
} |
|
|
|
const setV = {} |
|
|
|
setV[formField] = val[0][searchField] |
|
|
|
if (formField == 'modelShow') { |
|
|
|
setV['modelShow'] = val.map(item=>item.model).join(',') |
|
|
|
if (formField == 'model') { |
|
|
|
setV['model'] = val.map(item=>item.model).join(',') |
|
|
|
} |
|
|
|
|
|
|
|
if (formField == 'supplierCode') { |
|
|
@ -182,7 +182,7 @@ const submitForm = async (formType, submitData) => { |
|
|
|
if (data.masterId) { |
|
|
|
data.id = data.masterId |
|
|
|
} |
|
|
|
data.model =data.modelShow[0] |
|
|
|
// data.model =data.modelShow[0] |
|
|
|
// data.model =data.modelShow.join(',') |
|
|
|
data.yearAndMonth =data.yearAndMonthShow.join(',') |
|
|
|
data.subList = tableData.value // 拼接子表数据参数 |
|
|
@ -327,23 +327,25 @@ const openForm = async (type: string, row?: any) => { |
|
|
|
item.componentProps.isSearchList = false |
|
|
|
item.componentProps.disabled = true |
|
|
|
} |
|
|
|
if (item.field == 'modelShow') { |
|
|
|
if (item.field == 'model') { |
|
|
|
item.componentProps.disabled = true |
|
|
|
item.componentProps.isSearchList = false |
|
|
|
} |
|
|
|
if (item.field == 'yearAndMonthShow') { |
|
|
|
item.componentProps.disabled = true |
|
|
|
} |
|
|
|
}) |
|
|
|
row.yearAndMonthShow =row.yearAndMonth.split(',') |
|
|
|
row.modelShow =row.model.split(',') |
|
|
|
// row.modelShow =row.model.split(',') |
|
|
|
} else { |
|
|
|
ModelDeliTime.allSchemas.formSchema.forEach((item) => { |
|
|
|
if (item.field == 'supplierCode') { |
|
|
|
item.componentProps.isSearchList = true |
|
|
|
item.componentProps.disabled = false |
|
|
|
} |
|
|
|
if (item.field == 'modelShow') { |
|
|
|
if (item.field == 'model') { |
|
|
|
item.componentProps.disabled = false |
|
|
|
item.componentProps.isSearchList = true |
|
|
|
} |
|
|
|
if (item.field == 'yearAndMonthShow') { |
|
|
|
item.componentProps.disabled = false |
|
|
|