diff --git a/frontend/src/views/system/about/index.vue b/frontend/src/views/system/about/index.vue index d5f156de9c..076b8e199d 100644 --- a/frontend/src/views/system/about/index.vue +++ b/frontend/src/views/system/about/index.vue @@ -84,6 +84,11 @@ export default { 'user' ]) }, + mounted() { + this.$nextTick(() => { + this.$store.dispatch('app/toggleSideBarHide', true) + }) + }, created() { this.$store.dispatch('app/toggleSideBarHide', true) this.initVersion() diff --git a/frontend/src/views/system/user/personPwd.vue b/frontend/src/views/system/user/personPwd.vue index 1329e34134..e6d26c116c 100644 --- a/frontend/src/views/system/user/personPwd.vue +++ b/frontend/src/views/system/user/personPwd.vue @@ -1,22 +1,27 @@ @@ -54,7 +59,11 @@ export default { } }, - + mounted() { + this.$nextTick(() => { + this.$store.dispatch('app/toggleSideBarHide', true) + }) + }, created() { this.$store.dispatch('app/toggleSideBarHide', true) }, @@ -86,3 +95,21 @@ export default { } } + diff --git a/frontend/src/views/system/user/privateForm.vue b/frontend/src/views/system/user/privateForm.vue index 5d2c79b1b0..2bbfb99ba0 100644 --- a/frontend/src/views/system/user/privateForm.vue +++ b/frontend/src/views/system/user/privateForm.vue @@ -1,65 +1,70 @@