25 lines
809 B
JavaScript
25 lines
809 B
JavaScript
|
import Layout from '@/layouts/index.vue';
|
||
|
|
||
|
export default {
|
||
|
path: '/sub-government-affairs-service/produceGoodsMain',
|
||
|
name: 'produceGoodsMain',
|
||
|
component: Layout,
|
||
|
redirect: '/sub-government-affairs-service/produceGoods',
|
||
|
meta: { title: '产出品', icon: 'Document' },
|
||
|
children: [
|
||
|
{
|
||
|
path: '/sub-government-affairs-service/produceGoods',
|
||
|
name: 'produceGoods',
|
||
|
component: () => import('@/views/produceGoods/list/index.vue'),
|
||
|
meta: { title: '产出品列表', icon: 'Document' },
|
||
|
},
|
||
|
{
|
||
|
path: '/sub-government-affairs-service/produceGoods1',
|
||
|
name: 'produceGoods1',
|
||
|
component: () => import('@/views/produceGoods/test/index.vue'),
|
||
|
meta: { title: '投入品监管平台', icon: 'Document' },
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
// export default produceGoodsRoutes;
|