const.js 742 Bytes
export const STATUS_COLOR = {
  draft: { color: '#708192', text: '待提交' }, //待提交
  running: { color: '#409EFF', text: '审批中' },
  end: { color: '#BFBFBF', text: '已归档' },
  manualend: { color: '#C1AD9A', text: '已结束' },
  backToStart: { color: '#E55555', text: '被驳回' },
  back: { color: '#E55555', text: '被驳回' },
  revoke: { color: '#FFAE44', text: '已撤回' },
  revokeToStart: { color: '#FFAE44', text: '已撤回' },
}
export const URGENCY_STATUS_MAP = {
  1: '非常紧急',
  2: '比较紧急',
  3: '一般',
}
export const URGENCY_STATUS_COLOR = {
  1: 'red-color',
  2: 'yellow-color',
}

export const TASK_INFO = {
  id: '流程编号',
  creator: '创建人',
  createTime: '发起时间',
}