123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- export default [
- {
- path: '/user',
- layout: false,
- routes: [
- {
- path: '/user',
- routes: [
- {
- name: 'login',
- path: '/user/login',
- component: '@/pages/user/Login',
- },
- ],
- },
- {
- component: '@/pages/404',
- },
- ],
- },
- {
- path: '/dashboard',
- name: '工作台',
- icon: 'DashboardOutlined',
- component: './dashboard',
- },
- {
- path: '/',
- name: '工作台',//暂定
- redirect: '/person',
- hideInMenu: true,
- },
- {
- path: '/banner',
- name: '轮播图列表',
- icon: 'PictureOutlined',
- component: '@/pages/banner',
- },
- {
- path: '/banner/edit.jsx',
- name: '轮播图编辑',
- hideInMenu: true,
- component: '@/pages/banner/edit.jsx',
- },
- {
- path: '/notice',
- name: '通知列表',
- icon: 'BellOutlined',
- component: '@/pages/notice',
- },
- {
- path: '/notice/edit.jsx',
- name: '通知编辑',
- hideInMenu: true,
- component: '@/pages/notice/edit.jsx',
- },
- {
- path: '/applicationList',
- name: '申请列表',
- icon: 'FieldTimeOutlined',
- component: '@/pages/applicationList',
- },
- {
- path: '/applicationList/detail.jsx',
- name: '申请详情',
- hideInMenu: true,
- component: '@/pages/applicationList/detail.jsx',
- },
- {
- path: '/examine',
- name: '审核列表',
- icon: 'AuditOutlined',
- component: '@/pages/examine',
- },
- {
- path: '/examine/detail.jsx',
- name: '犬证审核',
- hideInMenu: true,
- component: '@/pages/examine/detail.jsx',
- },
- {
- path: '/certificateIssuance',
- name: '证件发放',
- icon: 'IdcardOutlined',
- component: '@/pages/certificateIssuance',
- },
- {
- path: '/certificateIssuance/issuance.jsx',
- name: '证件发放详情',
- hideInMenu: true,
- component: '@/pages/certificateIssuance/issuance.jsx',
- },
- {
- path: '/cardList',
- name: '证件列表',
- icon: 'IdcardOutlined',
- component: '@/pages/cardList',
- },
- {
- path: '/cardList/detail.jsx',
- name: '证件详情',
- hideInMenu: true,
- component: '@/pages/cardList/detail.jsx',
- },
- {
- path: '/userList',
- name: '犬主列表',
- icon: 'SolutionOutlined',
- component: '@/pages/userList',
- },
- {
- path: '/person',
- name: '人员列表',
- icon: 'UserOutlined',
- component: '@/pages/person',
- },
- {
- path: '/BasicParameters',
- name: '系统参数',
- icon: 'SettingOutlined',
- component: '@/pages/BasicParameters',
- },
- {
- path: '/',
- redirect: '/welcome',
- },
- {
- component: './404',
- },
- ];
|