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

Merge branch 'master' of 192.168.1.41:SmartCost/SCCommon

lipk 2 лет назад
Родитель
Сommit
e5c1eba2f9
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[];
 }
 
 // 步骤里的事项