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