This commit is contained in:
郭永超 2025-08-22 13:16:16 +08:00
commit dd9092e93c
2 changed files with 10 additions and 10 deletions

View File

@ -83,10 +83,6 @@ const router = useRouter();
const keyword = ref(''); const keyword = ref('');
const meuns = ref([ const meuns = ref([
{
label: '综合看板',
path: '/sub-operation-service/dashboard',
},
{ {
label: '智慧种植', label: '智慧种植',
path: '/sub-operation-service/smartFarm', path: '/sub-operation-service/smartFarm',
@ -96,8 +92,8 @@ const meuns = ref([
path: '/sub-operation-service/ecommerce', path: '/sub-operation-service/ecommerce',
}, },
{ {
label: '涉农金融', label: '农事服务',
path: '/sub-operation-service/finance', path: '/sub-operation-service/farmService',
}, },
{ {
label: '分拣包装', label: '分拣包装',
@ -108,13 +104,17 @@ const meuns = ref([
path: '/sub-operation-service/warehouseLogistics', path: '/sub-operation-service/warehouseLogistics',
}, },
{ {
label: '农事服务', label: '涉农金融',
path: '/sub-operation-service/farmService', path: '/sub-operation-service/finance',
}, },
{ {
label: '公共品牌', label: '公共品牌',
path: '/sub-operation-service/brand', path: '/sub-operation-service/brand',
}, },
{
label: '综合看板',
path: '/sub-operation-service/dashboard',
},
]); ]);
const goodNum = ref(0); const goodNum = ref(0);

View File

@ -150,11 +150,11 @@ export const constantRoutes = [
path: '/sub-operation-service', path: '/sub-operation-service',
name: 'layout', name: 'layout',
component: Layout, component: Layout,
redirect: '/sub-operation-service/dashboard', redirect: '/sub-operation-service/smartFarm',
meta: { title: '运营服务' }, meta: { title: '运营服务' },
children: [ children: [
{ {
path: '/sub-operation-service/home', path: '/sub-operation-service/main',
component: () => import('@/views/home/index.vue'), component: () => import('@/views/home/index.vue'),
name: 'home', name: 'home',
meta: { title: '首页' }, meta: { title: '首页' },