ship-test.ts 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import AisTestLayout from '@/views/ship-test/layout/index.vue'
  2. const aisTestRouter = [
  3. {
  4. path: '/ship-test',
  5. component: () => import('@/views/ship-test/index.vue'),
  6. },
  7. {
  8. name: 'ship-test-manage',
  9. path: '/ship-test/manage',
  10. component: AisTestLayout,
  11. children: [
  12. {
  13. name: '666089c1-0eac-4058-9b82-157cb4b9c277',
  14. path: 'source',
  15. component: () => import('@/views/ship-test/manage/source/index.vue'),
  16. meta: {
  17. title: '目标来源'
  18. }
  19. },
  20. {
  21. name: '4e53c650-a86c-4fde-83b2-eb316dd5e66a',
  22. path: 'params',
  23. component: () => import('@/views/ship-test/manage/params/index.vue'),
  24. meta: {
  25. title: '参数配置'
  26. }
  27. },
  28. {
  29. name: '4e53c650-a86c-4fde-83b2-eb316dd5e66a2222',
  30. path: 'track',
  31. component: () => import('@/views/ship-test/manage/track/index.vue'),
  32. meta: {
  33. title: '轨迹信息'
  34. }
  35. },
  36. {
  37. name: '4e53c650-a86c-4fde-83b2-eb316dssd5e66a2222',
  38. path: 'hover',
  39. component: () => import('@/views/ship-test/manage/hover/index.vue'),
  40. meta: {
  41. title: '详情框'
  42. }
  43. },
  44. ]
  45. },
  46. ]
  47. export default aisTestRouter