59 lines
2.3 KiB
JavaScript
Raw Normal View History

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/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' },
},
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-16 22:54:51 +08:00
meta: { title: '农产品种植进度管理', icon: 'Timer' },
2025-06-15 20:06:49 +08:00
},
2025-03-07 14:36:54 +08:00
{
2025-06-16 22:54:51 +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' },
2025-06-05 17:40:58 +08:00
},
{
path: '/sub-government-affairs-service/material/fertilizer',
name: 'input-supplies-fertilizer',
component: () => import('@/views/inputSuppliesManage/material/fertilizer/index.vue'),
2025-06-16 22:54:51 +08:00
meta: { title: '肥料管理', icon: 'Grid' },
2025-06-05 17:40:58 +08:00
},
{
2025-06-16 22:54:51 +08:00
path: '/sub-government-affairs-service/material/pesticide',
name: 'input-supplies-pesticide',
component: () => import('@/views/inputSuppliesManage/material/pesticide/index.vue'),
meta: { title: '农药管理', icon: 'Orange' },
2025-06-05 17:40:58 +08:00
},
{
path: '/sub-government-affairs-service/material/others',
name: 'input-supplies-others',
component: () => import('@/views/inputSuppliesManage/material/others/index.vue'),
2025-06-16 13:31:47 +08:00
meta: { title: '其他投入品管理', icon: 'TakeawayBox' },
2025-03-07 14:36:54 +08:00
},
],
},
];
export default inputSuppliesRoutes;