From 95979322c9b802eadff4a05d3fb3dd2155aa90cb Mon Sep 17 00:00:00 2001 From: Xulinchuan <2026734208@qq.com> Date: Thu, 21 Aug 2025 11:24:58 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8F=9C=E5=8D=95=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/layouts/component/Header/index.vue | 16 ++++++++-------- sub-operation-service/src/router/index.js | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sub-operation-service/src/layouts/component/Header/index.vue b/sub-operation-service/src/layouts/component/Header/index.vue index 30ee6c3..834ba95 100644 --- a/sub-operation-service/src/layouts/component/Header/index.vue +++ b/sub-operation-service/src/layouts/component/Header/index.vue @@ -83,10 +83,6 @@ const router = useRouter(); const keyword = ref(''); const meuns = ref([ - { - label: '综合看板', - path: '/sub-operation-service/dashboard', - }, { label: '智慧种植', path: '/sub-operation-service/smartFarm', @@ -96,8 +92,8 @@ const meuns = ref([ path: '/sub-operation-service/ecommerce', }, { - label: '涉农金融', - path: '/sub-operation-service/finance', + label: '农事服务', + path: '/sub-operation-service/farmService', }, { label: '分拣包装', @@ -108,13 +104,17 @@ const meuns = ref([ path: '/sub-operation-service/warehouseLogistics', }, { - label: '农事服务', - path: '/sub-operation-service/farmService', + label: '涉农金融', + path: '/sub-operation-service/finance', }, { label: '公共品牌', path: '/sub-operation-service/brand', }, + { + label: '综合看板', + path: '/sub-operation-service/dashboard', + }, ]); const goodNum = ref(0); diff --git a/sub-operation-service/src/router/index.js b/sub-operation-service/src/router/index.js index 8fe8b6d..dbfec60 100644 --- a/sub-operation-service/src/router/index.js +++ b/sub-operation-service/src/router/index.js @@ -150,11 +150,11 @@ export const constantRoutes = [ path: '/sub-operation-service', name: 'layout', component: Layout, - redirect: '/sub-operation-service/dashboard', + redirect: '/sub-operation-service/smartFarm', meta: { title: '运营服务' }, children: [ { - path: '/sub-operation-service/home', + path: '/sub-operation-service/main', component: () => import('@/views/home/index.vue'), name: 'home', meta: { title: '首页' },