移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

aaudit.js 496 B

1234567891011121314151617
  1. export const AAUDIT_INTENT = {
  2. NONE: '', // 无
  3. VIEW: 'VIEW', // 查看
  4. AUDIT: 'audit', // 审批
  5. HISTORY: 'history', // 审批历史
  6. PIPELINE: 'pipeline', // 审批流程图
  7. };
  8. export const AAUDIT_STATUS = {
  9. /* READY : "1", // 未提交
  10. AUDITING : "3", // 审批中
  11. PASS : "5", // 审批通过
  12. REJECT : "7", // 审批驳回 */
  13. READY : "0", // 未提交
  14. AUDITING : "1", // 审批中
  15. PASS : "3", // 审批通过
  16. REJECT : "2", // 审批驳回
  17. };