|
|
@@ -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[];
|
|
|
}
|
|
|
|
|
|
// 步骤里的事项
|