【功能调整】工作流:工作流程的流转记录,不区分父子任务

This commit is contained in:
YunaiV
2024-10-19 21:53:05 +08:00
parent dcdce4120d
commit 43b7dff0d0
15 changed files with 826 additions and 1688 deletions

View File

@ -1,8 +1,5 @@
<template>
<el-card v-loading="loading" class="box-card">
<template #header v-if="showHeader">
<span class="el-icon-picture-outline">流程图</span>
</template>
<MyProcessViewer key="designer" :xml="view.bpmnXml" :view="view" class="h-700px" />
</el-card>
</template>
@ -16,8 +13,7 @@ defineOptions({ name: 'BpmProcessInstanceBpmnViewer' })
const props = defineProps({
loading: propTypes.bool.def(false), // 是否加载中
id: propTypes.string, // 流程实例的编号
bpmnXml: propTypes.string, // BPMN XML
showHeader: propTypes.bool.def(true), // 是否显示头
bpmnXml: propTypes.string // BPMN XML
})
const view = ref({