From 64d3c54e91f8160a57d14e7ea5d1d6f547d2739a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E7=BA=A2=E4=B8=BD?= <1181930680@qq.com> Date: Tue, 17 Dec 2024 11:13:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BB=E9=A1=B5=E8=B7=B3=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/console/index.vue | 37 +++++++++++++++++++-------- 1 file changed, 27 insertions(+), 10 deletions(-) diff --git a/src/views/dashboard/console/index.vue b/src/views/dashboard/console/index.vue index eade47e..48c0204 100644 --- a/src/views/dashboard/console/index.vue +++ b/src/views/dashboard/console/index.vue @@ -137,14 +137,13 @@ v-for="(item, index) in iconList" :key="index" > - +

({}); const saleroom = ref({}); @@ -247,7 +248,9 @@ title: '用户管理', color: '#69c0ff', eventObject: { - click: () => {}, + click: () => { + router.push({ path: '/system/user' }); + }, }, }, { @@ -256,7 +259,9 @@ title: '租户管理', color: '#69c0ff', eventObject: { - click: () => {}, + click: () => { + router.push({ path: '/system/tenant' }); + }, }, }, { @@ -265,7 +270,9 @@ title: '操作日志', color: '#ff9c6e', eventObject: { - click: () => {}, + click: () => { + router.push({ path: '/system/logger/operLog' }); + }, }, }, { @@ -274,7 +281,9 @@ title: '参数管理', color: '#b37feb', eventObject: { - click: () => {}, + click: () => { + router.push({ path: '/data/param' }); + }, }, }, { @@ -283,7 +292,9 @@ title: '字典管理', color: '#ffd666', eventObject: { - click: () => {}, + click: () => { + router.push({ path: '/data/dict' }); + }, }, }, { @@ -292,7 +303,9 @@ title: '消息管理', color: '#5cdbd3', eventObject: { - click: () => {}, + click: () => { + router.push({ path: '/data/message' }); + }, }, }, { @@ -301,7 +314,9 @@ title: '定时任务', color: '#ff85c0', eventObject: { - click: () => {}, + click: () => { + router.push({ path: '/monitor/job' }); + }, }, }, { @@ -310,7 +325,9 @@ title: '配置管理', color: '#ffc069', eventObject: { - click: () => {}, + click: () => { + router.push({ path: '/data/config' }); + }, }, }, ];