瀏覽代碼

feat(types): 修改IApostilleParam

LuoHaoxuan 3 年之前
父節點
當前提交
2da2c13240
共有 1 個文件被更改,包括 8 次插入11 次删除
  1. 8 11
      types/src/interface/process.ts

+ 8 - 11
types/src/interface/process.ts

@@ -720,17 +720,6 @@ export interface IApostilleParamUser {
   type?: string;
   type?: string;
 }
 }
 
 
-export interface IApostilleParam {
-  permissions: Record<string, string[]>;
-  user: IApostilleParamUser;
-  afterApostille: 'next' | 'me';
-  canCollaborate: boolean;
-  collaborators: {
-    user?: string[];
-    institution?: string[];
-  };
-}
-
 export enum AddSignType {
 export enum AddSignType {
   MYDEPARTMENT = 'myDepartment', // 本部门
   MYDEPARTMENT = 'myDepartment', // 本部门
   ALLDEPARTMENT = 'allDepartment', // 本部门及下属部门
   ALLDEPARTMENT = 'allDepartment', // 本部门及下属部门
@@ -760,3 +749,11 @@ export interface IRangeSelectTree<T extends RangeSelectType = any> {
   icon?: string;
   icon?: string;
   [key: string]: any;
   [key: string]: any;
 }
 }
+
+export interface IApostilleParam {
+  permissions: Record<string, string[]>;
+  user: IApostilleParamUser;
+  afterApostille: 'next' | 'me';
+  canCollaborate: boolean;
+  collaborators: IRangeSelectTree[];
+}