|
|
@@ -8,6 +8,12 @@ export interface IAuditSummaryConfig {
|
|
|
stepIDs: string[];
|
|
|
}
|
|
|
|
|
|
+// 审核意见组件配置
|
|
|
+export interface IAuditCommentConfig {
|
|
|
+ // 富文本模板
|
|
|
+ template: string;
|
|
|
+}
|
|
|
+
|
|
|
// 事项
|
|
|
export interface IMatter {
|
|
|
ID: string;
|
|
|
@@ -18,10 +24,13 @@ export interface IMatter {
|
|
|
name: string;
|
|
|
sort: string;
|
|
|
formSchema: any;
|
|
|
+ // 组件名列表
|
|
|
assembly: string[];
|
|
|
dataID: string;
|
|
|
// 审批金额组件配置
|
|
|
auditAmountConfig?: IAuditSummaryConfig[];
|
|
|
+ // 审核意见组件配置
|
|
|
+ comment?: IAuditCommentConfig;
|
|
|
}
|
|
|
|
|
|
export interface IGatherMatter extends IMatter {
|