dengzedong
5 天以前 3357b5f0f0919f7a52cd32a6d6de0acb14e0daaf
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<template>
  <SimpleProcessModel :flow-node="simpleModel" :readonly="true" />
</template>
 
<script setup lang="ts">
import { useWatchNode } from './node'
import { SimpleFlowNode } from './consts'
 
defineOptions({
  name: 'SimpleProcessViewer'
})
 
const props = defineProps({
  flowNode: {
    type: Object as () => SimpleFlowNode,
    required: true
  },
  // 流程任务
  tasks: {
    type: Array,
    default: () => [] as any[]
  },
  // 流程实例
  processInstance: {
    type: Object,
    default: () => undefined
  }
})
const approveTasks = ref<any[]>(props.tasks)
const currentProcessInstance = ref(props.processInstance)
const simpleModel = useWatchNode(props)
watch(
  () => props.tasks,
  (newValue) => {
    approveTasks.value = newValue
  }
)
watch(
  () => props.processInstance,
  (newValue) => {
    currentProcessInstance.value = newValue
  }
)
 
provide('tasks', approveTasks)
provide('processInstance', currentProcessInstance)
</script>
p