Blame view

稻城亚丁小程序/uniapp/src/composables/useHideNativeTabBar.ts 351 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
  import { onShow } from "@dcloudio/uni-app";
  
  /** 隐藏系统 tabBar,改用自定义 ImageTabBar(避免 custom 导航页系统 tabBar 不显示) */
  export function useHideNativeTabBar() {
    onShow(() => {
      uni.hideTabBar({
        animation: false,
        fail() {
          /* 非 tab 页或未开启 tabBar 时忽略 */
        },
      });
    });
  }