Skip to content

Commit 2e04e11

Browse files
committed
chore: update menu type
1 parent 7089f9d commit 2e04e11

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ui/src/app/core/services/types.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,18 @@ export interface Menu {
7070
id: number | string;
7171
fatherId: number | string;
7272
path: string;
73+
orderNum: number;
7374
menuName: string;
7475
menuType: 'C' | 'F'; // c:菜单,f按钮
7576
icon?: string; // 如果showIcon为false,设置这个为搜索窗口时,最左侧的icon
7677
alIcon?: string; // 如果showIcon为false,设置这个为搜索窗口时,最左侧的icon
78+
updatedAt?: string;
79+
createdAt?: string;
80+
deletedAt?: string;
7781
open?: boolean;
7882
selected?: boolean; // 是否选中
83+
status?: boolean; // 是否禁用
84+
visible?: boolean; // 是否可见
7985
children?: Menu[];
8086
code: string; // 权限码
8187
newLinkFlag?: 0 | 1; // 是否是新页

0 commit comments

Comments
 (0)