From c9a6f7cbb5209415e626df29c7572cf40fe92b66 Mon Sep 17 00:00:00 2001 From: houzhongjian <houzhongyi@126.com> Date: 星期一, 06 一月 2025 11:44:50 +0800 Subject: [PATCH] 1、工作流程功能优化,解决流程图模拟功能simulation不生效的bug 2、system menu等页面修改 3、Footer copyright年份修改为动态 --- src/views/bpm/simpleWorkflow/index.vue | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/src/views/bpm/simpleWorkflow/index.vue b/src/views/bpm/simpleWorkflow/index.vue new file mode 100644 index 0000000..691cf2e --- /dev/null +++ b/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> -- Gitblit v1.9.3