From 4e9b38be0565e2d1568eecea85f0a7e785052dad Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Wed, 24 Sep 2025 18:25:28 +0800 Subject: [PATCH] fix(System Management): Click the logo here to go to user management by default --- frontend/src/components/layout/LayoutDsl.vue | 6 +++- frontend/src/views/ds/TableRelationship.vue | 32 ++++++++++++-------- 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/frontend/src/components/layout/LayoutDsl.vue b/frontend/src/components/layout/LayoutDsl.vue index ae902b7d8..1c17fcd62 100644 --- a/frontend/src/components/layout/LayoutDsl.vue +++ b/frontend/src/components/layout/LayoutDsl.vue @@ -46,6 +46,10 @@ const toWorkspace = () => { const toChatIndex = () => { router.push('/chat/index') } + +const toUserIndex = () => { + router.push('/system/user') +} const route = useRoute() const showSysmenu = computed(() => { return route.path.includes('/system') @@ -56,7 +60,7 @@ const showSysmenu = computed(() => {