fix : 更改vsys页面ID显示 及 二级页面滚动条显示

This commit is contained in:
likexuan
2022-10-12 16:37:51 +08:00
parent 9f6b404533
commit 96e0c08834
2 changed files with 3 additions and 3 deletions

View File

@@ -343,14 +343,14 @@ export const bottomBoxWindow = {
fullScreen (vm) {
window.resizing = true
const contentRightDom = document.querySelector('.list-page') // 右侧内容区
const contentRightHeight = contentRightDom.offsetHeight // 可视高度
// const contentRightHeight = contentRightDom.offsetHeight // 可视高度
vm.bottomBox.isFullScreen = true
// 主列表
vm.bottomBox.mainListHeight = document.querySelector('.main-list-with-sub').offsetHeight // 记录全屏前主列表的高度
document.querySelector('.main-list-with-sub').style.height = '0'
vm.bottomBox.mainResizeShow = false
// 副列表
document.querySelector('.sub-list').style.height = contentRightHeight + 'px'
document.querySelector('.sub-list').style.height = '100%'
document.querySelector('.sub-list').style.top = 0 + 'px'
window.resizing = false
},