1.首页中有一个显示tabbar栏
onLoad() {
// uni.startPullDownRefresh(); //触发下拉刷新
//uni.hideTabBar();
uni.showTabBar({
animation: true,
complete: function(res) {
console.log(res)
}
});
},
2.进入另一个页面,使用了tabbar的插件
<template>
<view>
<p>测试隐藏底部tabbar</p>
<jytabBar url="/pages/makefriends/newfile" currentIndex="0"></jytabBar>
</view>
</template>
<script>
import jytabBar from '@/components/jytabBar.vue';
export default {
data() {
return {};
},
components: {
jytabBar
},
onLoad() {
uni.hideTabBar({
animation: true,
complete: function(res) {
console.log(res)
}
})
},
onShow() {
uni.hideTabBar({
animation: true,
complete: function(res) {
console.log(res)
}
})
},
onNavigationBarButtonTap(e) {
uni.reLaunch({
url: '../news/index'
});
},
}
</script>
<style>
</style>
- 发布:2020-05-28 11:28
- 更新:2023-10-28 12:33
- 阅读:4489
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: windows 10 专业版
HBuilderX类型: 正式
HBuilderX版本号: 2.7.9
手机系统: Android
手机系统版本号: Android 6.0
手机厂商: 荣耀
手机机型: PLK-AL10
页面类型: vue
打包方式: 云端
项目创建方式: HBuilderX
操作步骤:
预期结果:
预期是进入另一个页面,首页的tabbar栏会隐藏(可见BUG描述中的图片)
预期是进入另一个页面,首页的tabbar栏会隐藏(可见BUG描述中的图片)
实际结果:
实际首页的tabbar栏和另一个tabbar一直显示(可见BUG描述中的图片)
实际首页的tabbar栏和另一个tabbar一直显示(可见BUG描述中的图片)
2023年9月24日 16点46分 问题还是存在 需要做的是这样的 进入页面检查用户token不存在的时候通过uni.reLaunch() 跳转登录页面 但是现在跳转过去以后 tabber不消失 在下面显示着
9***@qq.com (作者)
示例demo在评论,请看一下
2020-05-28 15:18