1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <template>
| <div>
| <section class="dingflow-design">
| <div class="box-scale">
| <nodeWrap v-model:nodeConfig="nodeConfig" />
| <div class="end-node">
| <div class="end-node-circle"></div>
| <div class="end-node-text">流程结束</div>
| </div>
| </div>
| </section>
| </div>
| </template>
| <script lang="ts" setup>
| import nodeWrap from '@/components/SimpleProcessDesigner/src/nodeWrap.vue'
| defineOptions({ name: 'SimpleWorkflowDesignEditor' })
| let nodeConfig = ref({
| nodeName: '发起人',
| type: 0,
| id: 'root',
| formPerms: {},
| nodeUserList: [],
| childNode: {}
| })
| </script>
| <style>
| @import url('@/components/SimpleProcessDesigner/theme/workflow.css');
| </style>
|
|