| 1234567891011121314151617181920212223242526272829303132333435 |
- /** 菜单列表 */
- export type MenuListData = {
- id: string;
- /** 名字 */
- name: string;
- /** 父级id */
- pid: string;
- /** 菜单 */
- url: string;
- /** 排序 */
- orderBy: string;
- /** 菜单图标 */
- img: string;
- };
- /** 属性菜单 */
- export type TreeMenuListData = {
- children: TreeMenuListData[];
- key: string;
- title: string;
- url: string;
- pId: string;
- };
- /** 权限菜单属性 */
- export type TreeRoleMenuData = {
- id: string;
- name: string;
- url: string;
- pId: string;
- page: number;
- limit: number;
- orderBy: string;
- img: string;
- };
|