gtsoft-snail-job-server/frontend/src/config/router.config.js
byteblogs168 8d59acd33e 0.0.2.0
修复进入系统404问题
2023-01-14 21:02:27 +08:00

454 lines
17 KiB
JavaScript

// eslint-disable-next-line
import { UserLayout, BasicLayout, BlankLayout } from '@/layouts'
import { bxAnaalyse } from '@/core/icons'
const RouteView = {
name: 'RouteView',
render: h => h('router-view')
}
export const asyncRouterMap = [
{
path: '/',
name: 'index',
component: BasicLayout,
meta: { title: 'menu.home' },
redirect: '/dashboard/analysis',
children: [
// dashboard
{
path: '/dashboard',
name: 'dashboard',
redirect: '/dashboard/analysis',
hideChildrenInMenu: true,
component: RouteView,
meta: { title: 'menu.dashboard', keepAlive: true, icon: bxAnaalyse, permission: ['dashboard'] },
children: [
{
path: '/dashboard/analysis',
name: 'Analysis',
component: () => import('@/views/dashboard/Analysis'),
meta: { title: 'menu.dashboard.analysis', keepAlive: true, permission: ['dashboard'] }
}
]
},
// profile
{
path: '/basic-config-list',
name: 'basicConfigList',
component: () => import('@/views/config/GroupList'),
meta: { title: '组管理', icon: 'profile', permission: ['group'] }
},
{
path: '/basic-config',
name: 'basicConfig',
hidden: true,
component: () => import('@/views/config/basicConfigForm/BasicConfigForm'),
meta: { title: '基础信息配置', hidden: true, hideChildrenInMenu: true, icon: 'profile', permission: ['basicConfig'] }
},
{
path: '/retry-task',
name: 'RetryTask',
component: RouteView,
hideChildrenInMenu: true,
redirect: '/retry-task/list',
meta: { title: '任务管理', icon: 'profile', hideChildrenInMenu: true, keepAlive: true, permission: ['retryTask'] },
children: [
{
path: '/retry-task/info',
name: 'RetryTaskInfo',
component: () => import('@/views/task/RetryTaskInfo'),
meta: { title: '任务管理详情', icon: 'profile', keepAlive: true, permission: ['retryTask'] }
},
{
path: '/retry-task/list',
name: 'RetryTaskList',
component: () => import('@/views/task/RetryTaskList'),
meta: { title: '任务管理列表', icon: 'profile', keepAlive: true, permission: ['retryTask'] }
}
]
},
{
path: '/retry-dead-letter',
name: 'RetryDeadLetter',
component: RouteView,
hideChildrenInMenu: true,
redirect: '/retry-dead-letter/list',
meta: { title: '死信队列管理', icon: 'profile', permission: ['retryDeadLetter'] },
children: [
{
path: '/retry-dead-letter/list',
name: 'RetryDeadLetterList',
component: () => import('@/views/task/RetryDeadLetterList'),
meta: { title: '死信队列管理列表', icon: 'profile', permission: ['retryDeadLetter'] }
},
{
path: '/retry-dead-letter/info',
name: 'RetryDeadLetterInfo',
component: () => import('@/views/task/RetryDeadLetterInfo'),
meta: { title: '死信队列管理详情', icon: 'profile', permission: ['retryDeadLetter'] }
}
]
},
{
path: '/retry-log',
name: 'RetryLog',
component: RouteView,
hideChildrenInMenu: true,
redirect: '/retry-log/list',
meta: { title: '重试日志管理', icon: 'profile', permission: ['retryLog'] },
children: [
{
path: '/retry-log/list',
name: 'RetryLogList',
component: () => import('@/views/task/RetryLogList'),
meta: { title: '重试日志列表', icon: 'profile', permission: ['retryLog'] }
},
{
path: '/retry-log/info',
name: 'RetryLogInfo',
component: () => import('@/views/task/RetryLogInfo'),
meta: { title: '重试日志详情', icon: 'profile', permission: ['retryLog'] }
}
]
},
{
path: '/user-list',
name: 'UserList',
component: () => import('@/views/user/UserList'),
meta: { title: '用户管理', icon: 'profile', permission: ['user'] }
},
{
path: '/user-form',
name: 'UserForm',
hidden: true,
component: () => import('@/views/user/UserForm'),
meta: { title: '新增或更新用户', icon: 'profile', permission: ['userForm'] }
}
// forms
// {
// path: '/form',
// redirect: '/form/base-form',
// component: RouteView,
// meta: { title: 'menu.form', icon: 'form', permission: ['form'] },
// children: [
// {
// path: '/form/base-form',
// name: 'BaseForm',
// component: () => import('@/views/form/basicForm'),
// meta: { title: 'menu.form.basic-form', keepAlive: true, permission: ['form'] }
// },
// {
// path: '/form/step-form',
// name: 'StepForm',
// component: () => import('@/views/form/stepForm/StepForm'),
// meta: { title: 'menu.form.step-form', keepAlive: true, permission: ['form'] }
// },
// {
// path: '/form/advanced-form',
// name: 'AdvanceForm',
// component: () => import('@/views/form/advancedForm/AdvancedForm'),
// meta: { title: 'menu.form.advanced-form', keepAlive: true, permission: ['form'] }
// }
// ]
// },
// // list
// {
// path: '/list',
// name: 'list',
// component: RouteView,
// redirect: '/list/table-list',
// meta: { title: 'menu.list', icon: 'table', permission: ['table'] },
// children: [
// {
// path: '/list/table-list/:pageNo([1-9]\\d*)?',
// name: 'TableListWrapper',
// hideChildrenInMenu: true, // 强制显示 MenuItem 而不是 SubMenu
// component: () => import('@/views/list/TableList'),
// meta: { title: 'menu.list.table-list', keepAlive: true, permission: ['table'] }
// },
// {
// path: '/list/basic-list',
// name: 'BasicList',
// component: () => import('@/views/list/BasicList'),
// meta: { title: 'menu.list.basic-list', keepAlive: true, permission: ['table'] }
// },
// {
// path: '/list/card',
// name: 'CardList',
// component: () => import('@/views/list/CardList'),
// meta: { title: 'menu.list.card-list', keepAlive: true, permission: ['table'] }
// },
// {
// path: '/list/search',
// name: 'SearchList',
// component: () => import('@/views/list/search/SearchLayout'),
// redirect: '/list/search/article',
// meta: { title: 'menu.list.search-list', keepAlive: true, permission: ['table'] },
// children: [
// {
// path: '/list/search/article',
// name: 'SearchArticles',
// component: () => import('../views/list/search/Article'),
// meta: { title: 'menu.list.search-list.articles', permission: ['table'] }
// },
// {
// path: '/list/search/project',
// name: 'SearchProjects',
// component: () => import('../views/list/search/Projects'),
// meta: { title: 'menu.list.search-list.projects', permission: ['table'] }
// },
// {
// path: '/list/search/application',
// name: 'SearchApplications',
// component: () => import('../views/list/search/Applications'),
// meta: { title: 'menu.list.search-list.applications', permission: ['table'] }
// }
// ]
// }
// ]
// },
//
// // profile
// {
// path: '/profile',
// name: 'profile',
// component: RouteView,
// redirect: '/profile/basic',
// meta: { title: 'menu.profile', icon: 'profile', permission: ['profile'] },
// children: [
// {
// path: '/profile/basic',
// name: 'ProfileBasic',
// component: () => import('@/views/profile/basic'),
// meta: { title: 'menu.profile.basic', permission: ['profile'] }
// },
// {
// path: '/profile/advanced',
// name: 'ProfileAdvanced',
// component: () => import('@/views/profile/advanced/Advanced'),
// meta: { title: 'menu.profile.advanced', permission: ['profile'] }
// }
// ]
// },
//
// // result
// {
// path: '/result',
// name: 'result',
// component: RouteView,
// redirect: '/result/success',
// meta: { title: 'menu.result', icon: 'check-circle-o', permission: ['result'] },
// children: [
// {
// path: '/result/success',
// name: 'ResultSuccess',
// component: () => import(/* webpackChunkName: "result" */ '@/views/result/Success'),
// meta: { title: 'menu.result.success', keepAlive: false, hiddenHeaderContent: true, permission: ['result'] }
// },
// {
// path: '/result/fail',
// name: 'ResultFail',
// component: () => import(/* webpackChunkName: "result" */ '@/views/result/Error'),
// meta: { title: 'menu.result.fail', keepAlive: false, hiddenHeaderContent: true, permission: ['result'] }
// }
// ]
// },
//
// // Exception
// {
// path: '/exception',
// name: 'exception',
// component: RouteView,
// redirect: '/exception/403',
// meta: { title: 'menu.exception', icon: 'warning', permission: ['exception'] },
// children: [
// {
// path: '/exception/403',
// name: 'Exception403',
// component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/403'),
// meta: { title: 'menu.exception.not-permission', permission: ['exception'] }
// },
// {
// path: '/exception/404',
// name: 'Exception404',
// component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/404'),
// meta: { title: 'menu.exception.not-find', permission: ['exception'] }
// },
// {
// path: '/exception/500',
// name: 'Exception500',
// component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/500'),
// meta: { title: 'menu.exception.server-error', permission: ['exception'] }
// }
// ]
// },
//
// // account
// {
// path: '/account',
// component: RouteView,
// redirect: '/account/center',
// name: 'account',
// meta: { title: 'menu.account', icon: 'user', keepAlive: true, permission: ['user'] },
// children: [
// {
// path: '/account/center',
// name: 'center',
// component: () => import('@/views/account/center'),
// meta: { title: 'menu.account.center', keepAlive: true, permission: ['user'] }
// },
// {
// path: '/account/settings',
// name: 'settings',
// component: () => import('@/views/account/settings/Index'),
// meta: { title: 'menu.account.settings', hideHeader: true, permission: ['user'] },
// redirect: '/account/settings/basic',
// hideChildrenInMenu: true,
// children: [
// {
// path: '/account/settings/basic',
// name: 'BasicSettings',
// component: () => import('@/views/account/settings/BasicSetting'),
// meta: { title: 'account.settings.menuMap.basic', hidden: true, permission: ['user'] }
// },
// {
// path: '/account/settings/security',
// name: 'SecuritySettings',
// component: () => import('@/views/account/settings/Security'),
// meta: {
// title: 'account.settings.menuMap.security',
// hidden: true,
// keepAlive: true,
// permission: ['user']
// }
// },
// {
// path: '/account/settings/custom',
// name: 'CustomSettings',
// component: () => import('@/views/account/settings/Custom'),
// meta: { title: 'account.settings.menuMap.custom', hidden: true, keepAlive: true, permission: ['user'] }
// },
// {
// path: '/account/settings/binding',
// name: 'BindingSettings',
// component: () => import('@/views/account/settings/Binding'),
// meta: { title: 'account.settings.menuMap.binding', hidden: true, keepAlive: true, permission: ['user'] }
// },
// {
// path: '/account/settings/notification',
// name: 'NotificationSettings',
// component: () => import('@/views/account/settings/Notification'),
// meta: {
// title: 'account.settings.menuMap.notification',
// hidden: true,
// keepAlive: true,
// permission: ['user']
// }
// }
// ]
// }
// ]
// }
// other
/*
{
path: '/other',
name: 'otherPage',
component: PageView,
meta: { title: '其他组件', icon: 'slack', permission: [ 'dashboard' ] },
redirect: '/other/icon-selector',
children: [
{
path: '/other/icon-selector',
name: 'TestIconSelect',
component: () => import('@/views/other/IconSelectorView'),
meta: { title: 'IconSelector', icon: 'tool', keepAlive: true, permission: [ 'dashboard' ] }
},
{
path: '/other/list',
component: RouteView,
meta: { title: '业务布局', icon: 'layout', permission: [ 'support' ] },
redirect: '/other/list/tree-list',
children: [
{
path: '/other/list/tree-list',
name: 'TreeList',
component: () => import('@/views/other/TreeList'),
meta: { title: '树目录表格', keepAlive: true }
},
{
path: '/other/list/edit-table',
name: 'EditList',
component: () => import('@/views/other/TableInnerEditList'),
meta: { title: '内联编辑表格', keepAlive: true }
},
{
path: '/other/list/user-list',
name: 'UserList',
component: () => import('@/views/other/UserList'),
meta: { title: '用户列表', keepAlive: true }
},
{
path: '/other/list/role-list',
name: 'RoleList',
component: () => import('@/views/other/RoleList'),
meta: { title: '角色列表', keepAlive: true }
},
{
path: '/other/list/system-role',
name: 'SystemRole',
component: () => import('@/views/role/RoleList'),
meta: { title: '角色列表2', keepAlive: true }
},
{
path: '/other/list/permission-list',
name: 'PermissionList',
component: () => import('@/views/other/PermissionList'),
meta: { title: '权限列表', keepAlive: true }
}
]
}
]
}
*/
]
},
{
path: '*',
redirect: '/404',
hidden: true
}
]
/**
* 基础路由
* @type { *[] }
*/
export const constantRouterMap = [
{
path: '/user',
component: UserLayout,
redirect: '/user/login',
hidden: true,
children: [
{
path: 'login',
name: 'login',
component: () => import(/* webpackChunkName: "user" */ '@/views/user/Login')
},
{
path: 'recover',
name: 'recover',
component: undefined
}
]
},
{
path: '/404',
component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/404')
}
]