116 lines
5.1 KiB
JavaScript
116 lines
5.1 KiB
JavaScript
import Layout from '@/layouts/index.vue';
|
|
import Views from '@/layouts/Views.vue';
|
|
|
|
const inputSuppliesRoutes = [
|
|
{
|
|
path: '/sub-government-affairs-service/material',
|
|
name: 'inputSuppliesManage',
|
|
component: Layout,
|
|
redirect: '/sub-government-affairs-service/material/pesticide',
|
|
meta: { title: '农产品种植管理', icon: 'FullScreen' },
|
|
children: [
|
|
// {
|
|
// path: '/sub-government-affairs-service/statistics',
|
|
// name: 'Statistics',
|
|
// component: () => import('@/views/planting-management/statistics/index.vue'),
|
|
// meta: { title: '使用监管概况统计', icon: 'PieChart' },
|
|
// },
|
|
{
|
|
path: '/sub-government-affairs-service/variety-record',
|
|
name: 'PlantVarietyRecord',
|
|
component: () => import('@/views/planting-management/variety-record/index.vue'),
|
|
meta: { title: '农产品种植品种备案', icon: 'Calendar' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/material/annualPlans',
|
|
name: 'annualPlans',
|
|
component: () => import('@/views/inputSuppliesManage/material/annualPlan/index.vue'),
|
|
meta: { title: '农产品种植计划管理', icon: 'Timer' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/material/seed',
|
|
name: 'input-supplies-seed',
|
|
component: () => import('@/views/inputSuppliesManage/material/seed/index.vue'),
|
|
meta: { title: '种子种苗管理', icon: 'Watermelon' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/material/fertilizer',
|
|
name: 'input-supplies-fertilizer',
|
|
component: () => import('@/views/inputSuppliesManage/material/fertilizer/index.vue'),
|
|
meta: { title: '肥料管理', icon: 'Grid' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/material/pesticide',
|
|
name: 'input-supplies-pesticide',
|
|
component: () => import('@/views/inputSuppliesManage/material/pesticide/index.vue'),
|
|
meta: { title: '农药管理', icon: 'Orange' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/material/others',
|
|
name: 'input-supplies-others',
|
|
component: () => import('@/views/inputSuppliesManage/material/others/index.vue'),
|
|
meta: { title: '其他投入品管理', icon: 'TakeawayBox' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/supervisionOfInputs ',
|
|
name: 'supervisionOfInputs',
|
|
redirect: '/sub-government-affairs-service/supervisionOfInputs/seedRegulation',
|
|
meta: { title: '投入品使用监管', icon: 'Connection' },
|
|
children: [
|
|
// {
|
|
// path: '/sub-government-affairs-service/supervisionOfInputs/regulatoryOverview',
|
|
// name: 'regulatoryOverview',
|
|
// component: () => import('@/views/inputSuppliesManage/supervisionOfInputs/regulatoryOverview.vue'),
|
|
// meta: { title: '使用监管概览', icon: '' },
|
|
// },
|
|
{
|
|
path: '/sub-government-affairs-service/supervisionOfInputs/seedRegulation',
|
|
name: 'seedRegulation',
|
|
component: () => import('@/views/inputSuppliesManage/supervisionOfInputs/seedRegulation.vue'),
|
|
meta: { title: '种子使用监管', icon: '' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/supervisionOfInputs/fertilizerRegulation',
|
|
name: 'fertilizerRegulation',
|
|
component: () => import('@/views/inputSuppliesManage/supervisionOfInputs/fertilizerRegulation.vue'),
|
|
meta: { title: '肥料使用监管', icon: '' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/supervisionOfInputs/pesticideRegulation',
|
|
name: 'pesticideRegulation',
|
|
component: () => import('@/views/inputSuppliesManage/supervisionOfInputs/pesticideRegulation.vue'),
|
|
meta: { title: '农药使用监管', icon: '' },
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/subsidyManage',
|
|
name: 'subsidyManage',
|
|
redirect: '/sub-government-affairs-service/subsidyManage/seedSubsidy',
|
|
meta: { title: '补贴管理', icon: 'Connection' },
|
|
children: [
|
|
{
|
|
path: '/sub-government-affairs-service/subsidyManage/seedSubsidy',
|
|
name: 'seedSubsidy',
|
|
component: () => import('@/views/inputSuppliesManage/subsidyManage/seedSubsidy.vue'),
|
|
meta: { title: '种子补贴', icon: '' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/subsidyManage/fertilizerSubsidy',
|
|
name: 'fertilizerSubsidy',
|
|
component: () => import('@/views/inputSuppliesManage/subsidyManage/fertilizerSubsidy.vue'),
|
|
meta: { title: '肥料补贴', icon: '' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/subsidyManage/pesticideSubsidy',
|
|
name: 'pesticideSubsidy',
|
|
component: () => import('@/views/inputSuppliesManage/subsidyManage/pesticideSubsidy.vue'),
|
|
meta: { title: '农药补贴', icon: '' },
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
export default inputSuppliesRoutes;
|