Pre Merge pull request !646 from Lesan/feature/bpm-n

pull/646/MERGE
Lesan 2025-01-04 01:36:33 +00:00 committed by Gitee
commit 1f4df010cd
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' name: 'SimpleProcessDesigner'
}) })
const emits = defineEmits(['success']) // const emits = defineEmits(['success', 'init-finished']) //
const props = defineProps({ const props = defineProps({
modelId: { modelId: {
@ -263,6 +263,7 @@ onMounted(async () => {
} }
} finally { } finally {
loading.value = false loading.value = false
emits('init-finished')
} }
}) })