2025-03-07 14:36:54 +08:00
|
|
|
import Layout from '@/layouts/index.vue';
|
2025-03-12 11:35:36 +08:00
|
|
|
import Views from '@/layouts/Views.vue';
|
2025-03-07 14:36:54 +08:00
|
|
|
|
|
|
|
const inputSuppliesRoutes = [
|
|
|
|
{
|
2025-06-05 17:40:58 +08:00
|
|
|
path: '/sub-government-affairs-service/material',
|
2025-03-07 14:36:54 +08:00
|
|
|
name: 'inputSuppliesManage',
|
|
|
|
component: Layout,
|
2025-06-05 17:40:58 +08:00
|
|
|
redirect: '/sub-government-affairs-service/material/pesticide',
|
2025-06-16 22:54:51 +08:00
|
|
|
meta: { title: '农产品种植管理', icon: 'FullScreen' },
|
2025-03-07 14:36:54 +08:00
|
|
|
children: [
|
2025-06-19 13:32:56 +08:00
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/variety-record',
|
|
|
|
name: 'PlantVarietyRecord',
|
|
|
|
component: () => import('@/views/planting-management/variety-record/index.vue'),
|
|
|
|
meta: { title: '农产品种植品种备案', icon: 'Calendar' },
|
|
|
|
},
|
2025-06-15 20:06:49 +08:00
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/material/annualPlans',
|
|
|
|
name: 'annualPlans',
|
|
|
|
component: () => import('@/views/inputSuppliesManage/material/annualPlan/index.vue'),
|
2025-06-23 17:13:45 +08:00
|
|
|
meta: { title: '农产品种植计划管理', icon: 'Timer' },
|
2025-06-15 20:06:49 +08:00
|
|
|
},
|
2025-03-07 14:36:54 +08:00
|
|
|
{
|
2025-06-24 15:46:44 +08:00
|
|
|
path: '/sub-government-affairs-service/planting-base',
|
|
|
|
name: 'PlantingBase',
|
|
|
|
component: () => import('@/views/planting-management/planting-base/index.vue'),
|
|
|
|
meta: { title: '种植基地管理', icon: 'Crop' },
|
2025-06-05 17:40:58 +08:00
|
|
|
},
|
|
|
|
{
|
2025-06-24 15:46:44 +08:00
|
|
|
path: '/sub-government-affairs-service/planting-batch',
|
|
|
|
name: 'PlantingBatch',
|
|
|
|
component: () => import('@/views/planting-management/planting-batch/index.vue'),
|
|
|
|
meta: { title: '种植批次管理', icon: 'Connection' },
|
2025-06-05 17:40:58 +08:00
|
|
|
},
|
|
|
|
{
|
2025-06-24 15:46:44 +08:00
|
|
|
path: '/sub-government-affairs-service/agricultural-work',
|
|
|
|
name: 'AgriculturalWork',
|
|
|
|
component: () => import('@/views/planting-management/agricultural-work/index.vue'),
|
|
|
|
meta: { title: '农事作业管理', icon: 'Notification' },
|
2025-03-07 14:36:54 +08:00
|
|
|
},
|
2025-06-24 11:36:13 +08:00
|
|
|
// {
|
|
|
|
// 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' },
|
|
|
|
// },
|
2025-06-23 17:25:56 +08:00
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/supervisionOfInputs ',
|
|
|
|
name: 'supervisionOfInputs',
|
|
|
|
redirect: '/sub-government-affairs-service/supervisionOfInputs/seedRegulation',
|
|
|
|
meta: { title: '投入品使用监管', icon: 'Connection' },
|
|
|
|
children: [
|
2025-06-24 11:36:13 +08:00
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/statistics',
|
|
|
|
name: 'Statistics',
|
|
|
|
component: () => import('@/views/planting-management/statistics/index.vue'),
|
|
|
|
meta: { title: '使用监管概况统计', icon: '' },
|
|
|
|
},
|
2025-06-23 17:25:56 +08:00
|
|
|
{
|
|
|
|
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: '' },
|
|
|
|
},
|
2025-06-24 16:02:39 +08:00
|
|
|
{
|
|
|
|
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: '' },
|
|
|
|
},
|
2025-06-23 17:25:56 +08:00
|
|
|
],
|
|
|
|
},
|
2025-03-07 14:36:54 +08:00
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|
|
|
|
export default inputSuppliesRoutes;
|