Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

data_dict.js 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. {
  41. path: '/data/showconfig',
  42. component: () => import('@/xt_pages/data/showConfig'),
  43. name: 'showconfig',
  44. meta: {
  45. title: 'showconfig',
  46. noCache: true,
  47. }
  48. }
  49. ]
  50. }