From a5153cea4c7f4b5195cd2588f6ed72a03c741673 Mon Sep 17 00:00:00 2001 From: RuoYi Date: Thu, 17 Mar 2022 09:43:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=9B=BA=E5=AE=9AHeader?= =?UTF-8?q?=E5=90=8E=E9=A1=B6=E9=83=A8=E5=AF=BC=E8=88=AA=E6=A0=8F=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E9=97=AE=E9=A2=98(I4XDN5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layout/index.vue | 4 ++++ src/store/modules/app.js | 3 +++ 2 files changed, 7 insertions(+) diff --git a/src/layout/index.vue b/src/layout/index.vue index c44e3fb..8d59143 100644 --- a/src/layout/index.vue +++ b/src/layout/index.vue @@ -98,6 +98,10 @@ function setLayout() { width: calc(100% - 54px); } +.sidebarHide .fixed-header { + width: calc(100%); +} + .mobile .fixed-header { width: 100%; } diff --git a/src/store/modules/app.js b/src/store/modules/app.js index 4bed8ba..468299e 100644 --- a/src/store/modules/app.js +++ b/src/store/modules/app.js @@ -12,6 +12,9 @@ const state = { const mutations = { TOGGLE_SIDEBAR: state => { + if (state.sidebar.hide) { + return false; + } state.sidebar.opened = !state.sidebar.opened state.sidebar.withoutAnimation = false if (state.sidebar.opened) {