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

Merge pull request !646 from Lesan/feature/bpm-n
This commit is contained in:
芋道源码 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

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')
} }
}) })