在uniapp中提供控制TabBar的显示与隐藏的函数  uni.hideTabBar() 与 uni.showTabBar()

<nut-button block type="primary" @click="JDdetail()" >立即接单</nut-button>
<---弹出框--->
<nut-popup style="z-index: 999;" position="bottom" closeable :custom-style="{ height: '70%' }" v-model:visible="showIcon">
</nut-popup>

const isshow=ref(false)//控制弹出框的显示与隐藏

// 监听弹出框变化来显示与隐藏TabBar
watch(showIcon, (newValue, oldValue) => {
  if(newValue){
    uni.hideTabBar()
  }else{
    uni.showTabBar()
  }
});

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部