优化细节

This commit is contained in:
icssoa
2025-09-17 19:21:56 +08:00
parent 97a25d3c7a
commit 70b71466f7
5 changed files with 15 additions and 18 deletions

View File

@@ -66,7 +66,9 @@ const list = computed<Item[]>(() => {
// 隐藏原生 tabBar
// #ifndef MP
uni.hideTabBar();
if (ctx.tabBar.list != null) {
uni.hideTabBar();
}
// #endif
</script>