Explorar el Código

UI 修复切换页面时有滚动条

Yue hace 2 años
padre
commit
37b02e4318
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      UI/VAP.VUE/src/layouts/main/toolbar/tag-view/Index.vue

+ 5 - 0
UI/VAP.VUE/src/layouts/main/toolbar/tag-view/Index.vue

@@ -211,6 +211,11 @@ function handleScroll() {
 watch(route, () => {
 	addTags()
 	moveToCurrentTag()
+	// 切换页面时隐藏滚动条
+	document.body.classList.add("overflow-y-hidden")
+	setTimeout(() => {
+		document.body.classList.remove("overflow-y-hidden")
+	}, 1000)
 })
 watch(visible, (value) => {
 	if (value) {