|
|
@ -113,10 +113,9 @@ const [useProvideSharedFormStore, useSharedFormStore] = useInjectionState((share |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
progress.value = true |
|
|
|
progress.value = true |
|
|
|
const data:Record<string,any> = { ...(formState?.value ?? {}), ...(additionalState?.value || {}) } |
|
|
|
const data: Record<string, any> = { ...(formState?.value ?? {}), ...(additionalState?.value || {}) } |
|
|
|
const attachment: Record<string, any> = {} |
|
|
|
const attachment: Record<string, any> = {} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (const col of metas?.value?.[sharedFormView?.value?.fk_model_id as string]?.columns ?? []) { |
|
|
|
for (const col of metas?.value?.[sharedFormView?.value?.fk_model_id as string]?.columns ?? []) { |
|
|
|
if (col.uidt === UITypes.Attachment) { |
|
|
|
if (col.uidt === UITypes.Attachment) { |
|
|
|
attachment[`_${col.title}`] = data[col.title!] |
|
|
|
attachment[`_${col.title}`] = data[col.title!] |
|
|
|