houzhongjian
2025-06-18 923f49266b00bd05bf8a4037b29ecb706d1306ff
src/views/bpm/simpleWorkflow/index.vue
对比新文件
@@ -0,0 +1,13 @@
<template>
  <SimpleProcessDesigner :model-id="modelId" />
</template>
<script setup lang="ts">
import { SimpleProcessDesigner } from '@/components/SimpleProcessDesignerV2/src/'
defineOptions({
  name: 'SimpleWorkflowDesignEditor'
})
const { query } = useRoute() // 路由的查询
const modelId = query.modelId as string
</script>
<style lang="scss" scoped></style>