fix 聊天页tabbar显示隐藏

This commit is contained in:
2025-12-15 15:23:30 +08:00
parent cb9f626788
commit 817fa27136

View File

@@ -125,7 +125,7 @@ onHide(() => {
paging.value?.handleTouchCancel();
if (isDrawerOpen.value) {
isDrawerOpen.value = false;
uni.showTabBar();
if(!screenStore.isWideScreen)uni.showTabBar();
}
});
@@ -134,7 +134,7 @@ const toggleDrawer = () => {
if (isDrawerOpen.value) {
uni.hideTabBar();
} else {
uni.showTabBar();
if(!screenStore.isWideScreen)uni.showTabBar();
}
};