1234567891011121314151617181920212223 |
- /**
- * 系统设置 system setting
- */
- import Layout from '@/layout'
- const sys = {
- path: '/businessManage',
- component: Layout,
- redirect: '/businessManage',
- alwaysShow: true,
- name: 'businessManage',
- meta: { title: '农户管理', icon: 'el-icon-s-shop' },
- children: [
- {
- path: 'apply',
- name: 'businessManageApply',
- component: () => import('@/views/businessManage/apply/index'),
- meta: { title: '入驻申请' }
- }
- ]
- }
- export default sys
|