fix(element-nav): 纵向菜单出现滚动条时,滑块位置异常

fix/element-nav-scrollbar
sight 2025-09-05 21:21:19 +08:00
parent a0a0ba4a1c
commit 030ab88a4d
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ layui.define('jquery', function(exports) {
if (!child[0]) { if (!child[0]) {
var thisA = othis.children('.'+ NAV_TITLE); var thisA = othis.children('.'+ NAV_TITLE);
bar.css({ bar.css({
top: othis.offset().top - nav.offset().top, top: othis.offset().top - nav.offset().top + nav.scrollTop(),
height: (thisA[0] ? thisA : othis).outerHeight(), height: (thisA[0] ? thisA : othis).outerHeight(),
opacity: 1 opacity: 1
}); });