Forráskód Böngészése

feat(types): 修改记录类型

lipk 3 éve
szülő
commit
89ecbcd139
1 módosított fájl, 11 hozzáadás és 1 törlés
  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 {