mcon.js 877 Bytes
Newer Older
wangcong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import UserParticipant from './actions/components/user-participant.vue'
import Leadership from './actions/components/leadership-participant.vue'
import RoleParticipant from './actions/components/role-participant.vue'
import SelectApprover from './control/select-approver.vue'
import AutoTask from './control/autotask.vue'
import EditableAttr from './control/editable-attr.vue'

export default {
  WorkFlowPanel: {},
  UserTaskPanel: {
    SelectApprover,
    AutoTask,
    EditableAttr,
  },
  EventPanel: {},
  ParticipantStrategyComponents: {
    'DemoExtendedStrategy': UserParticipant, // 键为BEAN的名称, 与后端对应
    'com.jiuqi.rbc.workflow.strategy.LeadershipParticipantStrategy': Leadership, // 键为BEAN的名称, 与后端对应
    'com.jiuqi.rbc.workflow.strategy.RoleParticipantStrategy': RoleParticipant, // 键为BEAN的名称, 与后端对应
  },
}