【代码评审】BPM:流程编辑

This commit is contained in:
YunaiV
2025-01-15 20:25:07 +08:00
parent d32a9a37bf
commit 6fba4b7228
8 changed files with 51 additions and 86 deletions

View File

@ -17,7 +17,7 @@ defineOptions({
name: 'SimpleModelDesign'
})
const props = defineProps<{
defineProps<{
modelId?: string
modelKey?: string
modelName?: string
@ -34,17 +34,5 @@ const handleSuccess = (data?: any) => {
emit('success', data)
}
}
// 组件创建时初始化数据
onMounted(() => {
})
// 组件卸载前保存数据
onBeforeUnmount(async () => {
})
defineExpose({
})
</script>
<style lang="scss" scoped></style>