From e74fce268e48129c6cb9eb3dc5c985d38d14b15d Mon Sep 17 00:00:00 2001 From: joylink_zhaoerwei Date: Tue, 10 Oct 2023 16:21:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BE=A7=E8=BE=B9=E6=A0=8F=E9=A1=BA=E5=BA=8F?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/SysMenu.vue | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/components/SysMenu.vue b/src/components/SysMenu.vue index ba8afe4..e7c75a3 100644 --- a/src/components/SysMenu.vue +++ b/src/components/SysMenu.vue @@ -43,16 +43,14 @@ import { reactive } from 'vue'; const list = reactive([ { - path: '', - label: '系统管理', - icon: 'dataset', - children: [ - { - path: '/sysManage/user', - label: '用户管理', - icon: 'manage_accounts', - }, - ], + path: '/monitor', + label: '监控', + icon: 'computer', + }, + { + path: '/alarmList', + label: '报警列表', + icon: 'access_alarm', }, { path: '', @@ -92,14 +90,16 @@ const list = reactive([ ], }, { - path: '/monitor', - label: '监控', - icon: 'computer', - }, - { - path: '/alarmList', - label: '报警列表', - icon: 'access_alarm', + path: '', + label: '系统管理', + icon: 'dataset', + children: [ + { + path: '/sysManage/user', + label: '用户管理', + icon: 'manage_accounts', + }, + ], }, ]);