2025-03-10 09:05:01 +08:00
|
|
|
import Layout from '@/layouts/index.vue';
|
|
|
|
|
|
|
|
export default [
|
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/productOperateMain',
|
|
|
|
name: 'productOperateMain',
|
|
|
|
component: Layout,
|
|
|
|
redirect: '/sub-government-affairs-service/individual',
|
2025-03-10 17:32:40 +08:00
|
|
|
meta: { title: '生产经营主体', icon: 'icon-shop' },
|
2025-03-10 09:05:01 +08:00
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/individual',
|
|
|
|
component: () => import('@/views/productOperateMain/individual/index.vue'),
|
|
|
|
name: 'individual',
|
|
|
|
meta: { title: '个体户', icon: 'Document' },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/collective',
|
|
|
|
component: () => import('@/views/productOperateMain/collective/index.vue'),
|
|
|
|
name: 'collective',
|
|
|
|
meta: { title: '村集体', icon: 'Document' },
|
|
|
|
},
|
2025-03-10 09:37:26 +08:00
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/coop',
|
|
|
|
component: () => import('@/views/productOperateMain/coOp/index.vue'),
|
|
|
|
name: 'coop',
|
|
|
|
meta: { title: '合作社', icon: 'Document' },
|
|
|
|
},
|
2025-03-10 17:32:40 +08:00
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/enterprise',
|
|
|
|
component: () => import('@/views/productOperateMain/enterprise/index.vue'),
|
|
|
|
name: 'enterprise',
|
|
|
|
meta: { title: '经营企业', icon: 'Document' },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/examineList',
|
|
|
|
component: () => import('@/views/productOperateMain/examine/list.vue'),
|
|
|
|
name: 'examineList',
|
|
|
|
meta: { title: '主体审核管理', icon: 'Document' },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/examineRecord',
|
|
|
|
component: () => import('@/views/productOperateMain/examine/record.vue'),
|
|
|
|
name: 'examineRecord',
|
|
|
|
meta: { title: '主体审核历史', icon: 'Document' },
|
|
|
|
},
|
2025-03-10 09:05:01 +08:00
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|