Explorar el Código

feat(types): 修改记录类型

lipk hace 3 años
padre
commit
89ecbcd139
Se han modificado 1 ficheros con 11 adiciones y 1 borrados
  1. 11 1
      types/src/interface/editLog.ts

+ 11 - 1
types/src/interface/editLog.ts

@@ -20,7 +20,17 @@ export interface ILogDetail {
   institution?: string; // 单位名称
   procunit?: string; // 流程环节
   procuAttr?: string; // 流程环节缩写
-  gljLogs?: ILogDetail[];
+  gljLogs?: Array<
+    ILogDetail & {
+      info: {
+        code?: string;
+        name?: string;
+        unit?: string;
+        specs: string;
+        type: GljType;
+      };
+    }
+  >;
 }
 
 export interface IEditLog {