1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| interface FormItemProps {
| /** 菜单类型(0代表菜单、1代表iframe、2代表外链、3代表按钮)*/
| menuType: number;
| higherMenuOptions: Record<string, unknown>[];
| parentId: number;
| title: string;
| name: string;
| path: string;
| component: string;
| rank: number;
| redirect: string;
| icon: string;
| extraIcon: string;
| enterTransition: string;
| leaveTransition: string;
| activePath: string;
| auths: string;
| frameSrc: string;
| frameLoading: boolean;
| keepAlive: boolean;
| hiddenTag: boolean;
| fixedTag: boolean;
| showLink: boolean;
| showParent: boolean;
| }
| interface FormProps {
| formInline: FormItemProps;
| }
|
| export type { FormItemProps, FormProps };
|
|