12345678910111213141516171819202122232425 |
- module.exports = [
- {
- title: '应用管理',
- path: '',
- icon: 'column',
- module: '@app',
- children: [
- {
- title: '应用信息',
- path: '/xms/app',
- icon: 'bill',
- },
- {
- title: '资源管理',
- path: '/xms/resources',
- icon: 'tags',
- },
- {
- title: '角色管理',
- path: '/xms/roles',
- icon: 'tag',
- },
- ],
- },
- ];
|