Blame view

src/components/Process/FlowCard/config.js 1.22 KB
4424f41c   monkeyhouyi   网信执法、清单管理静态页面
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  export default {
    start: {
      type: "start",
      content: "所有人",
      properties: {
        initiator: [],
        initiatePos: [],
        initiateRole: [],
        title: '发起节点'
      }
    },
    approver: {
      type: "approver",
      content: "请设置审批人",
      properties: {
        title: '审批节点'
      }
    },
    copy: {
      type: 'copy',
      content: '发起人自选',
      properties: {
        title: '抄送人',
        menbers: [],
        userOptional: true
      }
    },
    timer: {
      type: 'timer',
      content: '请设置时间',
      properties: {
        title: '定时器',
        day: 0,
        hour: 0,
        minute: 0,
        second: 0
      }
    },
    subFlow: {
      type: 'subFlow',
      content: '请设置发起人',
      properties: {
        title: '子流程'
      }
    },
    interflow: {
      type: "approver",
      content: "请设置审批人",
      isInterflow: true,
      properties: {
        title: '审批节点'
      }
    },
    condition: {
      type: "condition",
      content: "请设置条件",
      properties: {
        title: '条件',
        conditions: [],
        initiator: null
      }
    },
    branch: {
      type: "branch",
      content: "",
      properties: {}
    },
    empty: {
      type: "empty",
      content: "",
      properties: {}
    }
  }