!646 fix: Simple设计器修改不生效

Merge pull request !646 from Lesan/feature/bpm-n
pull/647/MERGE
芋道源码 2025-01-04 07:15:25 +00:00 committed by Gitee
commit 4aa44abf25
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,7 @@ defineOptions({
name: 'SimpleProcessDesigner'
})
const emits = defineEmits(['success']) //
const emits = defineEmits(['success', 'init-finished']) //
const props = defineProps({
modelId: {
@ -263,6 +263,7 @@ onMounted(async () => {
}
} finally {
loading.value = false
emits('init-finished')
}
})