diff --git a/yudao-ui-admin/src/layout/index.vue b/yudao-ui-admin/src/layout/index.vue index 26e64e93d..01ad6c459 100644 --- a/yudao-ui-admin/src/layout/index.vue +++ b/yudao-ui-admin/src/layout/index.vue @@ -101,6 +101,10 @@ export default { width: calc(100% - 54px); } +.sidebarHide .fixed-header { + width: calc(100%); +} + .mobile .fixed-header { width: 100%; } diff --git a/yudao-ui-admin/src/store/modules/app.js b/yudao-ui-admin/src/store/modules/app.js index 57904fdf0..3e22d1c16 100644 --- a/yudao-ui-admin/src/store/modules/app.js +++ b/yudao-ui-admin/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) {