在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()
}
});
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » uniapp中使用弹出框控制Tab栏区域显示与隐藏
发表评论 取消回复