46 lines
1.8 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',
meta: { title: '投入品管理', icon: 'FullScreen' },
2025-03-07 14:36:54 +08:00
children: [
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'),
meta: { title: '农产品种植管理', icon: 'Timer' },
},
2025-03-07 14:36:54 +08:00
{
2025-06-05 17:40:58 +08:00
path: '/sub-government-affairs-service/material/pesticide',
name: 'input-supplies-pesticide',
component: () => import('@/views/inputSuppliesManage/material/pesticide/index.vue'),
2025-06-15 20:06:49 +08:00
meta: { title: '农药使用管理', icon: 'Orange' },
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-15 20:06:49 +08:00
meta: { title: '肥料使用管理', icon: 'Grid' },
2025-06-05 17:40:58 +08:00
},
{
path: '/sub-government-affairs-service/material/seed',
name: 'input-supplies-seed',
component: () => import('@/views/inputSuppliesManage/material/seed/index.vue'),
2025-06-15 20:06:49 +08:00
meta: { title: '种子使用管理', icon: 'Watermelon' },
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-14 14:31:19 +08:00
meta: { title: '其他投入品', icon: 'TakeawayBox' },
2025-03-07 14:36:54 +08:00
},
],
},
];
export default inputSuppliesRoutes;