dictionaryManagement.js 792B

12345678910111213141516171819202122232425262728293031323334353637
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/dictionaryManagement',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'dictionaryManagement',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'dictionaryManagement',
  10. icon: 'dictionaryManagement',
  11. isChild: true
  12. },
  13. children: [
  14. {
  15. path: '/data/dictionary',
  16. component: () => import('@/xt_pages/data/index'),
  17. name: 'dictionary',
  18. meta: {
  19. title: 'data_dictionary',
  20. noCache: true,
  21. }
  22. },
  23. {
  24. path: '/data/specialDictionary',
  25. component: () => import('@/xt_pages/data/specialDictionary'),
  26. name: 'specialDictionary',
  27. meta: {
  28. title: 'specialDictionary',
  29. noCache: true,
  30. }
  31. }
  32. ]
  33. }