JCwhy
-
发布:2019-01-14 22:00
-
更新:2019-01-15 11:15
-
阅读:1795
1.怎么禁止背后的列表滚动
- 页面下面有tabbar的时候,遮不住tabBar
DCloud_UNI_GSQ
- 如果想阻止弹出层的滚动,可以在遮罩层监听touchmove事件同时阻止事件冒泡和默认行为: <view class="mask" @touchmove.stop.prevent="moveHandle"></view>
- 可以在输入框获取和失去焦点的时候使用uni.hideTabBar(https://uniapp.dcloud.io/api/ui/tabbar?id=hidetabbar)、uni.showTabBar(https://uniapp.dcloud.io/api/ui/tabbar?id=showtabbar)控制 TabBar 的显示状态。
1 个回复
DCloud_UNI_GSQ