1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- export default [
- {
- path: '/user',
- layout: false,
- routes: [
- {
- path: '/user',
- routes: [
- {
- name: 'login',
- path: '/user/login',
- component: './user/login',
- },
- ],
- },
- ],
- },
- {
- path: '/welcome',
- name: 'welcome',
- icon: 'smile',
- component: './Welcome',
- },
- // {
- // 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: '/',
- // routes: [
- // {
- // name: 'list.table-list',
- // path: '/',
- // routes: [
- // {
- // name: 'list.table-list',
- // path: '/order',
- // component: './Order/Billing',
- // }
- // ]
- // }
- // ],
- // },
- {
- name: 'list.table-list',
- icon: 'table',
- path: '/order',
- component: './Order/Billing',
- },
- // {
- // name: 'list.table-list',
- // icon: 'table',
- // path: '/list',
- // component: './ListTableList',
- // },
- {
- path: '/',
- redirect: '/welcome',
- },
- {
- component: './404',
- },
- ];
|