From 53bcb7e5dffa071d2c6593f5db7f0b6e4e2f8dfe Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Wed, 18 Oct 2023 16:17:02 +0800
Subject: [PATCH] 隐藏重复定时和连续执行
---
src/components/common/topbar.vue | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/src/components/common/topbar.vue b/src/components/common/topbar.vue
index 1b62929..21f54b2 100644
--- a/src/components/common/topbar.vue
+++ b/src/components/common/topbar.vue
@@ -50,7 +50,6 @@
watch(route, (newVal) => {
if (newVal) {
selected.value = newVal.path
- console.log(selected.value, '+++++')
}
}, {
immediate: true,
@@ -72,7 +71,7 @@
const options = [
{ key: 0, label: '项目', path: '/' + ERouterName.PROJECT_LIST },
{ key: 1, label: '人员管理', path: '/' + ERouterName.MEMBERS },
- { key: 2, label: '设备管理', path: '/' + ERouterName.DEVICES },
+ // { key: 2, label: '设备管理', path: '/' + ERouterName.DEVICES },
// { key: 3, label: ERouterName.FIRMWARES.charAt(0).toUpperCase() + ERouterName.FIRMWARES.substr(1), path: '/' + ERouterName.FIRMWARES },
]
--
Gitblit v1.9.3