12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- export default [
- {
- path: '/user',
- layout: false,
- routes: [
- {
- path: '/user',
- routes: [
- {
- name: 'login',
- path: '/user/login',
- component: './user/Login',
- },
- ],
- },
- ],
- },
- {
- path: '/welcome',
- name: 'welcome',
- icon: 'HomeOutlined',
- component: './Welcome',
- },
- {
- path: '/role',
- name: 'role',
- icon: 'UserOutlined',
- routes: [
- {
- path: '/role',
- redirect: '/Role/System'
- },
- {
- path: '/role/system',
- name: 'system',
- component: './Role/System',
- },
- {
- path: '/role/customer',
- name: 'customer',
- component: './Role/Customer',
- },
- ],
- },
- // {
- // path: '/admin',
- // name: 'admin',
- // icon: 'crown',
- // access: 'canAdmin',
- // component: './Admin',
- // routes: [
- // {
- // path: '/admin/sub-page',
- // name: 'sub-page',
- // icon: 'smile',
- // component: './Welcome',
- // },
- // ],
- // },
- // {
- // name: 'list.table-list',
- // icon: 'table',
- // path: '/list',
- // component: './TableList',
- // },
- // {
- // path: '/',
- // redirect: '/welcome',
- // },
- // {
- // component: './404',
- // },
- ];
|