We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7089f9d commit 2e04e11Copy full SHA for 2e04e11
ui/src/app/core/services/types.ts
@@ -70,12 +70,18 @@ export interface Menu {
70
id: number | string;
71
fatherId: number | string;
72
path: string;
73
+ orderNum: number;
74
menuName: string;
75
menuType: 'C' | 'F'; // c:菜单,f按钮
76
icon?: string; // 如果showIcon为false,设置这个为搜索窗口时,最左侧的icon
77
alIcon?: string; // 如果showIcon为false,设置这个为搜索窗口时,最左侧的icon
78
+ updatedAt?: string;
79
+ createdAt?: string;
80
+ deletedAt?: string;
81
open?: boolean;
82
selected?: boolean; // 是否选中
83
+ status?: boolean; // 是否禁用
84
+ visible?: boolean; // 是否可见
85
children?: Menu[];
86
code: string; // 权限码
87
newLinkFlag?: 0 | 1; // 是否是新页
0 commit comments