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

fix(types): mater数据修改打印设置类型

lishihao 2 лет назад
Родитель
Сommit
dca25a9f3f
1 измененных файлов с 4 добавлено и 3 удалено
  1. 4 3
      types/src/interface/matter.ts

+ 4 - 3
types/src/interface/matter.ts

@@ -16,11 +16,12 @@ export interface IAuditCommentConfig {
 }
 
 // 报表打印设置
-interface IMatterReportConfig {
+export interface IMatterReportConfig {
   component: string;
   enable: boolean;
   type: string;
   IDs: string;
+  compilationID?: string;
 }
 
 // 事项
@@ -147,8 +148,8 @@ export interface IProcessComponent<T = any> {
   data?: T | null;
   // 组件标题
   componentTitle?: string;
-  // 是否有报表打印
-  isPrint?: boolean;
+  // 报表打印设置
+  reportConfig?: IMatterReportConfig[];
 }
 
 // 步骤里的事项