From fc4eafbb114492c97bfe73ad70e055a6245b89de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=99=E8=BF=B0=E3=80=81=E5=88=AB=E7=A6=BB?= <93301500+xushubieli@users.noreply.github.com> Date: Mon, 31 Mar 2025 13:22:32 +0800 Subject: [PATCH] Update admin.main.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 遮罩层防止滚动 --- src/static/web/js/admin.main.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/static/web/js/admin.main.js b/src/static/web/js/admin.main.js index a0b98b85..c591f9fd 100644 --- a/src/static/web/js/admin.main.js +++ b/src/static/web/js/admin.main.js @@ -118,13 +118,15 @@ function ChangeFullDiv(showhide, screenheigt) { newobj.id = "fullpagediv"; newobj.style.position = "fixed"; newobj.className = "fullpagediv"; - newobj.style.height = document.body.clientHeight + "px"; + //newobj.style.height = document.body.clientHeight + "px"; document.body.appendChild(newobj); } else { newobj.style.display = "block"; } + document.body.style.overflow = "hidden"; } else { if (newobj) newobj.style.display = "none"; + document.body.style.overflow = ""; } } function SelectSource(e) {