Browse Source

Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon

zhangweicheng 2 years atrás
parent
commit
9e27cb3039
2 changed files with 5 additions and 2 deletions
  1. 2 2
      types/src/interface/api/approvaApi.ts
  2. 3 0
      types/src/interface/process.ts

+ 2 - 2
types/src/interface/api/approvaApi.ts

@@ -156,13 +156,13 @@ export namespace GetAuditScoreLogs {
 export namespace UpdateAuditScoreRemark {
 export namespace UpdateAuditScoreRemark {
   export type Params = Omit<IAuditScoreRemark, 'ID'> & { ID?: string };
   export type Params = Omit<IAuditScoreRemark, 'ID'> & { ID?: string };
 
 
-  export type Responst = IAuditScoreRemark;
+  export type Response = IAuditScoreRemark;
 }
 }
 
 
 export namespace GetAuditScoreRemarkList {
 export namespace GetAuditScoreRemarkList {
   export type Params = { businessID: string; dataID: string };
   export type Params = { businessID: string; dataID: string };
 
 
-  export type Resonse = Array<IAuditScoreRemark & { isCurrent?: boolean }>;
+  export type Response = Array<IAuditScoreRemark & { isCurrent?: boolean }>;
 }
 }
 
 
 export namespace GetGcnameAndReviewer {
 export namespace GetGcnameAndReviewer {

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

@@ -566,6 +566,9 @@ export interface ITodo {
 
 
 export interface IApprovalTodo extends ITodo {
 export interface IApprovalTodo extends ITodo {
   data: IApprovalTodoData;
   data: IApprovalTodoData;
+  isWarning?: boolean;
+  isEmergency?: boolean;
+  stayTime?: number;
 }
 }
 
 
 export enum ChangeRecord {
 export enum ChangeRecord {