data_dict.js 1001B

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