data_upload.js 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/upload/',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'quality_control',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'quality_control',
  10. icon: 'excel'
  11. },
  12. children: [
  13. {
  14. path: '/upload/fast',
  15. component: () => import('@/xt_pages/upload/fast_upload'),
  16. name: 'fast_upload',
  17. meta: {
  18. title: 'fast_upload',
  19. noCache: true,
  20. }
  21. },
  22. {
  23. path: '/upload/data',
  24. component: () => import('@/xt_pages/upload/data_upload'),
  25. name: 'data_upload',
  26. meta: {
  27. title: 'data_upload',
  28. noCache: true,
  29. }
  30. },
  31. {
  32. path: '/upload/export',
  33. component: () => import('@/xt_pages/upload/export'),
  34. name: 'export',
  35. meta: {
  36. title: 'export',
  37. noCache: true,
  38. }
  39. }, {
  40. path: '/upload/config',
  41. component: () => import('@/xt_pages/upload/config'),
  42. name: 'upload_config',
  43. meta: {
  44. title: 'upload_config',
  45. noCache: true,
  46. }
  47. },
  48. ]
  49. }