33 lines
768 B
JavaScript
33 lines
768 B
JavaScript
export const menuList = [
|
|
{
|
|
value: '1',
|
|
title: '企业信息管理',
|
|
icon: 'mail',
|
|
children: [{ title: '公告维护管理', value: 'ggwhgl' }],
|
|
},
|
|
{
|
|
value: '2',
|
|
title: '菜单权限管理',
|
|
icon: 'notification',
|
|
children: [
|
|
{ title: '应用管理', value: 'yygl' },
|
|
{ title: '菜单管理', value: 'cdgl' },
|
|
{ title: '广告管理', value: 'gggl' },
|
|
{ title: '快捷菜单管理', value: 'kjcdgl' },
|
|
{ title: '功能权限管理', value: 'gnqxgl' },
|
|
{ title: '企业信息管理', value: 'qyxxgl' },
|
|
],
|
|
},
|
|
{
|
|
value: '3',
|
|
title: '用户权限管理',
|
|
icon: 'circle',
|
|
children: [],
|
|
},
|
|
{
|
|
value: 'zhanghugl',
|
|
title: '账号管理',
|
|
icon: 'password',
|
|
},
|
|
];
|