调整多个组件的高度计算逻辑

This commit is contained in:
jxxghp
2025-06-11 13:21:42 +08:00
parent 3c051b8698
commit f27cd796b6
3 changed files with 11 additions and 3 deletions

View File

@@ -242,7 +242,7 @@ function stopDrag() {
// 外层DIV大小控制
const scrollStyle = computed(() => {
return appMode
? 'height: calc(100vh - 10.5rem - env(safe-area-inset-bottom) - 6.5rem)'
? 'height: calc(100vh - 10.5rem - env(safe-area-inset-bottom) - 7rem)'
: 'height: calc(100vh - 10.5rem - env(safe-area-inset-bottom)'
})