12345678910111213141516171819202122232425262728293031323334353637 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/dictionaryManagement',
- component: Layout,
- redirect: 'noredirect',
- name: 'dictionaryManagement',
- alwaysShow: true,
- meta: {
- title: 'dictionaryManagement',
- icon: 'dictionaryManagement',
- isChild: true
- },
- children: [
- {
- path: '/data/dictionary',
- component: () => import('@/xt_pages/data/index'),
- name: 'dictionary',
- meta: {
- title: 'data_dictionary',
- noCache: true,
-
- }
- },
- {
- path: '/data/specialDictionary',
- component: () => import('@/xt_pages/data/specialDictionary'),
- name: 'specialDictionary',
- meta: {
- title: 'specialDictionary',
- noCache: true,
-
- }
- }
- ]
- }
|