Files
dax-pay-ui/src/views/modules/bpm/model/node/BpmModelNodeCode.ts
2023-03-13 23:36:23 +08:00

21 lines
871 B
TypeScript

export const SPONSOR_OPTION = { label: '发起人', value: 'sponsor' }
export const SELECT_OPTION = { label: '用户手动选择', value: 'select' }
export const USER_OPTION = { label: '用户', value: 'user' }
export const USER_GROUP_OPTION = { label: '用户组', value: 'userGroup' }
export const ROLE_OPTION = { label: '角色', value: 'role' }
export const DEPT_MEMBER_OPTION = { label: '部门成员', value: 'deptMember' }
export const DEPT_LEADER_OPTION = { label: '部门的负责人', value: 'deptLeader' }
export const SPONSOR = 'sponsor'
export const SELECT = 'select'
export const USER = 'user'
export const USER_GROUP = 'userGroup'
export const ROLE = 'role'
export const DEPT_MEMBER = 'deptMember'
export const DEPT_LEADER = 'deptLeader'
// 流程定义已发布
export const PUBLISHED = 'published'
// 未发布
export const UNPUBLISHED = 'unpublished'