1234567891011121314151617181920212223242526 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/orginfo',
- component: Layout,
- hidden: true,
- is_menu: false,
- meta: {
- title: 'orginfo',
- icon: 'shebei'
- },
- children: [
- {
- path: '/orginfo',
- component: () => import('@/xt_pages/org/orginfo'),
- hidden: true,
- is_menu: false,
- name: 'orginfo',
- meta: {
- title: '机构信息',
- icon: 'shebei',
- noCache: true
- }
- }
- ]
- }
|