Просмотр исходного кода

feat(types): 调整ProcessStatus

LuoHaoxuan 3 лет назад
Родитель
Сommit
58c2cfa40f
1 измененных файлов с 0 добавлено и 2 удалено
  1. 0 2
      types/src/interface/process.ts

+ 0 - 2
types/src/interface/process.ts

@@ -14,7 +14,6 @@ export enum SectorType {
 export enum ProcessStatus {
   WAITING = 'waiting', // 待审批
   APPROVED = 'approved', // 审批通过
-  APOSTILLE = 'apostille', // 加签
   ACTIVATING = 'activating', // 当前流程
   FAILED = 'failed', //  审批退回
 }
@@ -326,7 +325,6 @@ export interface IProcedureItem {
   sectorType?: 'apostille' | 'condition' | 'approval';
   apostilleInfo?: IApostilleInfo;
   apostilleProcess?: IProcedureItem;
-  approvedType?: string;
 }
 
 export interface IApproval {