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' }); + }, }, }, ];