org.js 566B

1234567891011121314151617181920212223242526
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/orginfo',
  4. component: Layout,
  5. hidden: true,
  6. is_menu: false,
  7. meta: {
  8. title: 'orginfo',
  9. icon: 'shebei'
  10. },
  11. children: [
  12. {
  13. path: '/orginfo',
  14. component: () => import('@/xt_pages/org/orginfo'),
  15. hidden: true,
  16. is_menu: false,
  17. name: 'orginfo',
  18. meta: {
  19. title: '机构信息',
  20. icon: 'shebei',
  21. noCache: true
  22. }
  23. }
  24. ]
  25. }