瀏覽代碼

feat(types): 审核意见组件后台配置

vian 3 年之前
父節點
當前提交
45a7503598
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. 9 0
      types/src/interface/matter.ts

+ 9 - 0
types/src/interface/matter.ts

@@ -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 {