businessManage.js 483 B

1234567891011121314151617181920212223
  1. /**
  2. * 系统设置 system setting
  3. */
  4. import Layout from '@/layout'
  5. const sys = {
  6. path: '/businessManage',
  7. component: Layout,
  8. redirect: '/businessManage',
  9. alwaysShow: true,
  10. name: 'businessManage',
  11. meta: { title: '农户管理', icon: 'el-icon-s-shop' },
  12. children: [
  13. {
  14. path: 'apply',
  15. name: 'businessManageApply',
  16. component: () => import('@/views/businessManage/apply/index'),
  17. meta: { title: '入驻申请' }
  18. }
  19. ]
  20. }
  21. export default sys