useHideNativeTabBar.ts 351 Bytes
import { onShow } from "@dcloudio/uni-app";

/** 隐藏系统 tabBar,改用自定义 ImageTabBar(避免 custom 导航页系统 tabBar 不显示) */
export function useHideNativeTabBar() {
  onShow(() => {
    uni.hideTabBar({
      animation: false,
      fail() {
        /* 非 tab 页或未开启 tabBar 时忽略 */
      },
    });
  });
}