Browse Source

fix(types): process

qinlaiqiao 4 years ago
parent
commit
7f2d696299
1 changed files with 5 additions and 5 deletions
  1. 5 5
      types/src/interface/process.ts

+ 5 - 5
types/src/interface/process.ts

@@ -7,15 +7,15 @@ export enum SectorType {
 }
 }
 
 
 export enum ProcessStatus {
 export enum ProcessStatus {
-  waiting = 'waiting', // 待审批
-  approved = 'approved', // 审批通过
-  activating = 'activating', // 当前流程
-  failed = 'failed', //  审批退回
+  WAITING = 'waiting', // 待审批
+  APPROVED = 'approved', // 审批通过
+  ACTIVATING = 'activating', // 当前流程
+  FAILED = 'failed', //  审批退回
 }
 }
 
 
 // 审批方式
 // 审批方式
 export enum ApprovalWay {
 export enum ApprovalWay {
-  report = 'report', // 上报审批
+  REPORT = 'report', // 上报审批
   ACCOUNT = 'account', // 指定用户
   ACCOUNT = 'account', // 指定用户
   JOINTLYSIGN = 'jointlySign', // 会签
   JOINTLYSIGN = 'jointlySign', // 会签
   ORSIGN = 'orSign', // 或签
   ORSIGN = 'orSign', // 或签