refactor(front): update FormButton click handlers to support async functionality

This commit is contained in:
keven1024
2025-05-15 11:15:29 +08:00
parent d2d11ef9d8
commit dca8799f04
3 changed files with 3 additions and 3 deletions

View File

@@ -57,7 +57,7 @@ const props = defineProps<{
rules="required" />
</div>
</div>
<FormButton @click="(form) => {
<FormButton @click="async (form) => {
onFileHandle({ type: 'file-share', config: values })
hide()
}">提交</FormButton>