From 4ebf2a78ef42b6ba7722e850828b1a14ac4d3d38 Mon Sep 17 00:00:00 2001 From: diantu Date: Mon, 30 Oct 2023 11:59:27 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E5=A4=8D=E3=80=91=E5=8F=B3?= =?UTF-8?q?=E9=94=AE=E8=8F=9C=E5=8D=95=E6=9C=80=E5=A4=A7=E5=8C=96=E5=90=8E?= =?UTF-8?q?=E9=80=80=E5=87=BA=E6=9C=80=E5=A4=A7=E5=8C=96=E6=A8=A1=E5=9D=97?= =?UTF-8?q?=E8=8F=9C=E5=8D=95=E4=B8=A2=E5=A4=B1=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- snowy-admin-web/src/layout/index.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/snowy-admin-web/src/layout/index.vue b/snowy-admin-web/src/layout/index.vue index 0316dbd4..b2554faa 100644 --- a/snowy-admin-web/src/layout/index.vue +++ b/snowy-admin-web/src/layout/index.vue @@ -41,7 +41,7 @@ - +
@@ -134,7 +134,7 @@
- +
@@ -191,6 +191,7 @@ const openKeys = ref([]) const onSelectTag = ref(false) const moduleMenu = ref([]) + const moduleMenuShow = ref(true) const doublerowSelectedKey = ref([]) const layoutSiderDowbleMenu = ref(true) const currentRoute = ref() @@ -492,5 +493,9 @@ // 退出最大化 const exitMaximize = () => { document.getElementById('app').classList.remove('main-maximize') + moduleMenuShow.value = false + nextTick(() => { + moduleMenuShow.value = true + }) }