admin.ts 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. export default [
  2. // 实验室管理
  3. {
  4. path: '/laboratory/info',
  5. meta: { title: '实验室管理-信息列表' },
  6. component: () => import('@/views/laboratory/info/index.vue')
  7. },
  8. {
  9. path: '/laboratory/info/detail',
  10. meta: { title: '详细信息' },
  11. component: () => import('@/views/laboratory/info/detail.vue')
  12. },
  13. {
  14. path: '/company',
  15. meta: { title: '参加单位' },
  16. component: () => import('@/views/company/index.vue')
  17. },
  18. {
  19. path: '/company/detail',
  20. meta: { title: '信息管理' },
  21. component: () => import('@/views/company/detail.vue')
  22. },
  23. {
  24. path: '/policyfile',
  25. meta: { title: '政策文件' },
  26. component: () => import('@/views/policyfile/index.vue')
  27. },
  28. {
  29. path: '/policyfile/detail',
  30. meta: { title: '信息管理' },
  31. component: () => import('@/views/policyfile/detail.vue')
  32. },
  33. {
  34. path: '/activitys/times',
  35. meta: { title: '活动时间' },
  36. component: () => import('@/views/activitys/times/index.vue')
  37. },
  38. {
  39. path: '/activitys/times/detail',
  40. meta: { title: '信息管理' },
  41. component: () => import('@/views/activitys/times/detail.vue')
  42. }
  43. ];