1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- export default [
- {
- path: '/user',
- layout: false,
- routes: [
- {
- path: '/user',
- routes: [
- {
- name: 'login',
- path: '/user/login',
- component: '@/pages/user/Login',
- },
- ],
- },
- {
- component: '@/pages/404',
- },
- ],
- },
- {
- path: '/',
- name: '工作台',//暂定
- redirect: '/invoiceFill',
- hideInMenu: true,
- },
- {
- path: '/invoiceFill',
- name: '班次列表',
- icon: 'SolutionOutlined',
- component: '@/pages/invoiceFill',
- },
- {
- path: '/invoiceFill/edit',
- name: '班次编辑',
- icon: 'ProfileOutlined',
- component: '@/pages/invoiceFill/edit.jsx',
- hideInMenu:true
- },
- {
- path: '/invoiceDetail',
- name: '开票明细',
- icon: 'ProfileOutlined',
- component: '@/pages/invoiceDetail',
- },
- {
- path: '/nofill',
- name: '未填记录',
- icon: 'FileSearchOutlined',
- component: '@/pages/noFill',
- },
- {
- path: '/',
- redirect: '/welcome',
- },
- {
- component: './404',
- },
- ];
|