menuModel.ts
931 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import type { RouteMeta } from 'vue-router';
export interface RouteItem {
  id: string;
  path: string;
  component: any;
  meta: RouteMeta;
  name?: string;
  alias?: string | string[];
  redirect?: string;
  caseSensitive?: boolean;
  children?: RouteItem[];
  menuName?: string;
  icon?: string;
  key?: string;
}
/**
 * @description: Get menu return value
 */
export type getMenuListResultModel = RouteItem[];
export interface Meta {
  title: string;
  menuType: string;
  status: string;
  icon: string;
  isLink: boolean;
  ignoreKeepAlive: boolean;
  hideMenu: boolean;
}
export interface MenuRecord {
  id: string;
  createTime: string;
  updateTime: string;
  name: string;
  children: MenuRecord[];
  path: string;
  type: string;
  permission: string;
  sort: number;
  component: string;
  meta: Meta;
  disabled?: boolean;
  show?: boolean;
  icon?: string;
  title?: string;
  key?: string;
  checked?: boolean;
}