From 3ce57142d47e9c33acc07d5784582ab81439c1d2 Mon Sep 17 00:00:00 2001 From: java110 <928255095@qq.com> Date: Wed, 15 Apr 2020 09:34:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E6=B5=8F=E8=A7=88=E5=99=A8?= =?UTF-8?q?=E9=AB=98=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/frameComponents/menu/menu.js | 1 + public/vcCore/vcFramework.js | 9 ++------- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/public/frameComponents/menu/menu.js b/public/frameComponents/menu/menu.js index 7c054a2d0..142eaeb8b 100644 --- a/public/frameComponents/menu/menu.js +++ b/public/frameComponents/menu/menu.js @@ -92,6 +92,7 @@ vc.setCurrentMenu(_id); vm.menus = vm.refreshMenuActive(vm.menus, _id); vc.setMenus(vm.menus); + vc._fix_height() }, miniMenu: function () { diff --git a/public/vcCore/vcFramework.js b/public/vcCore/vcFramework.js index e4e568629..a05493b8d 100644 --- a/public/vcCore/vcFramework.js +++ b/public/vcCore/vcFramework.js @@ -1790,7 +1790,7 @@ vc 校验 工具类 -method //全屏处理 这个后面可以关掉 (function (vcFramework) { - _fix_height = () => { + vcFramework._fix_height = () => { //只要窗口高度发生变化,就会进入这里面,在这里就可以写,回到聊天最底部的逻辑 let _vcPageHeight = document.getElementsByClassName('vc-page-height')[0]; //浏览器可见高度 @@ -1803,12 +1803,7 @@ vc 校验 工具类 -method _vcPageHeight.style.minHeight = _scollHeight + 'px'; console.log('是否设置高度', _vcPageHeight.style.minHeight); } - - setTimeout(function(){ - //if (!$("body").hasClass('body-small')) { - _fix_height(); - //} - }) + vcFramework._fix_height(); })(window.vcFramework);