123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- /*
- * @Author: Badguy
- * @Date: 2022-04-25 16:01:34
- * @LastEditTime: 2022-04-25 16:06:24
- * @LastEditors: your name
- * @Description: 账号管理
- * have a nice day!
- */
- import Layout from '@/layout'
- // 权限管理
- const authorityRoutes = {
- path: '/authority',
- component: Layout,
- meta: { roles: ['authority_menu'] },
- children: [
- {
- path: '/authority',
- component: () => import('@/views/authorityManagement/index'),
- meta: {
- title: '权限管理',
- icon: 'authority',
- imgstyle: 'ic_list_nav_permissions_default.png',
- imgstyleup: 'ic_list_nav_permissions_check.png'
- },
- children: [
- {
- path: '/',
- name: 'AuthorityHome',
- component: {
- render(c) {
- return c('router-view')
- }
- },
- redirect: '/',
- meta: { title: '权限项管理', isPage: 'authority_page' },
- children: [
- {
- path: '/',
- component: () => import('@/views/authorityManagement/components/authorityHome')
- },
- {
- path: 'appAdd',
- name: 'AuthorityAppAdd',
- component: () => import('@/views/authorityManagement/components/authorityAppAdd'),
- meta: { title: '新增应用' }
- },
- {
- path: 'appEdit',
- name: 'AuthorityAppEdit',
- component: () => import('@/views/authorityManagement/components/authorityAppEdit'),
- meta: { title: '编辑应用' }
- },
- {
- path: 'addPower',
- name: 'AuthorityPowerAdd',
- component: () => import('@/views/authorityManagement/components/authorityPowerAdd'),
- meta: { title: '新增权限项' }
- },
- {
- path: 'editPower',
- name: 'AuthorityPowerEdit',
- component: () => import('@/views/authorityManagement/components/authorityPowerEdit'),
- meta: { title: '编辑权限项' }
- }
- ]
- }
- ]
- }
- ]
- }
- // 角色管理
- const roleRoutes = {
- path: '/role',
- component: Layout,
- meta: { roles: ['role_menu'] },
- children: [
- {
- path: '/role',
- component: () => import('@/views/authorityManagement/components/authorityRole'),
- meta: {
- title: '角色管理',
- icon: 'role',
- imgstyle: 'ic_list_nav_character_default.png',
- imgstyleup: 'ic_list_nav_character_check.png'
- },
- children: [
- {
- path: '/',
- name: 'AuthorityRoleHome',
- component: {
- render(c) {
- return c('router-view')
- }
- },
- redirect: '/',
- meta: { title: '角色管理', isPage: 'role_page' },
- children: [
- {
- path: '/',
- component: () => import('@/views/authorityManagement/components/authorityRoleHome')
- },
- {
- path: 'addRole',
- name: 'AuthorityRoleAdd',
- component: () => import('@/views/authorityManagement/components/authorityRoleAdd'),
- meta: { title: '新增角色' }
- },
- {
- path: 'editRole',
- name: 'AuthorityRoleEdit',
- component: () => import('@/views/authorityManagement/components/authorityRoleEdit'),
- meta: { title: '编辑角色' }
- }
- ]
- }
- ]
- }
- ]
- }
- // 账号管理
- const accountRoutes = {
- path: '/account',
- component: Layout,
- meta: { roles: ['account_menu'] },
- children: [
- {
- path: '/account',
- name: 'accountManagement',
- component: () => import('@/views/accountManagement'),
- meta: {
- title: '账号管理',
- icon: 'account',
- imgstyle: 'ic_list_nav_account_default.png',
- imgstyleup: 'ic_list_nav_account_check.png'
- },
- children: [
- {
- path: '/account',
- name: 'accountHome',
- component: {
- render(c) {
- return c('router-view')
- }
- },
- redirect: '/account',
- meta: {
- title: '账号管理',
- roles: ['account_page']
- },
- children: [
- {
- path: '/account',
- component: () => import('@/views/accountManagement/components/accountHome')
- },
- {
- path: 'accountAdd',
- name: 'accountAdd',
- component: () => import('@/views/accountManagement/components/accountEdit'),
- meta: {
- title: '新增账号'
- }
- },
- {
- path: 'accountEdit',
- name: 'accountEdit',
- component: () => import('@/views/accountManagement/components/accountEdit'),
- meta: {
- title: '编辑账号',
- doesAccountExist: true
- }
- }
- ]
- }
- ]
- }
- ]
- }
- export default [authorityRoutes, roleRoutes, accountRoutes]
|