|
|
@ -199,6 +199,7 @@ const formsSuccess = async (formType,data) => { |
|
|
|
return |
|
|
|
} |
|
|
|
basicFormRef.value.formLoading = true |
|
|
|
try { |
|
|
|
if (formType === 'create') { |
|
|
|
await BomApi.createBom(data) |
|
|
|
message.success(t('common.createSuccess')) |
|
|
@ -206,7 +207,9 @@ const formsSuccess = async (formType,data) => { |
|
|
|
await BomApi.updateBom(data) |
|
|
|
message.success(t('common.updateSuccess')) |
|
|
|
} |
|
|
|
} finally { |
|
|
|
basicFormRef.value.formLoading = false |
|
|
|
} |
|
|
|
basicFormRef.value.dialogVisible = false |
|
|
|
if (formType === 'create') { |
|
|
|
getList() |
|
|
|