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