diff --git a/frontend/src/views/system/about/index.vue b/frontend/src/views/system/about/index.vue index 9e91f43c2c..d5f156de9c 100644 --- a/frontend/src/views/system/about/index.vue +++ b/frontend/src/views/system/about/index.vue @@ -85,6 +85,7 @@ export default { ]) }, created() { + this.$store.dispatch('app/toggleSideBarHide', true) this.initVersion() this.getLicenseInfo() }, diff --git a/frontend/src/views/system/user/personPwd.vue b/frontend/src/views/system/user/personPwd.vue index 8766f2e49a..1329e34134 100644 --- a/frontend/src/views/system/user/personPwd.vue +++ b/frontend/src/views/system/user/personPwd.vue @@ -56,7 +56,7 @@ export default { }, created() { - + this.$store.dispatch('app/toggleSideBarHide', true) }, methods: { repeatValidator(rule, value, callback) { diff --git a/frontend/src/views/system/user/privateForm.vue b/frontend/src/views/system/user/privateForm.vue index b8736ceeb6..5d2c79b1b0 100644 --- a/frontend/src/views/system/user/privateForm.vue +++ b/frontend/src/views/system/user/privateForm.vue @@ -151,6 +151,7 @@ export default { }, created() { + this.$store.dispatch('app/toggleSideBarHide', true) this.queryPerson() this.initRoles() },