有处理好了吗 我也一段这个问题,就是打开小程序的时候首页还没有加载完看到底部就直接点到其他tabber页面,但其实tabBar 组件显示已切换,但显示停留在原页面
通过微信扫码进入小程序,触发页面跳转,tabBar 组件显示已切换,但显示停留在原页面如题,通过微信扫码(微信扫一扫)进入小程序首页后,根据业务条件判定会进行页面跳转,但使用 wx.switchTab 跳转到另一 tabBar 页面时,部分机型出现 tabBar 组件显示已切换,但页面显示仍然停留在原页面的bug,且原页面除地图组件以外的其他元素均不响应点击。而在小程序内扫码后触发相同的业务逻辑是可以正常跳转的。 问题机型:华为荣耀10,鸿蒙2.0.0(微信识别为安卓),微信版本8.0.32,基础库版本2.30.0。
03-10怎么样 这个问题搞定了吗
iphone6s plus cover-view点击事件触发报错live-player组件内的 cover-view点击事件触发报错(其他机型暂未发现此问题) ******html******** <live-player id="videolivePlayer" src="{{playUrl}}" mode="RTC" autoplay='{{autoplay}}' class="live-player" object-fit='contain' background-mute="true" bindstatechange='livezt' bindfullscreenchange="qpzt"> <cover-view class='bind' bindtap='quanpinanniu'> <cover-view wx:if='{{fullScreen}}' hidden='{{quanpin}}' bindtap="tapName" class='zhibofanhui' style='width:48rpx;height:48rpx'> <cover-image src='../../imgs/fanhui.png' style='width:48rpx;height:48rpx'>cover-image> cover-view> <cover-view hidden='{{quanpin}}' class='quanpin'> <cover-image wx:if='{{fullScreen}}' src='../../imgs/quanpin2.png' style='width:64rpx;height:64rpx'>cover-image> <cover-image wx:else src='../../imgs/quanpin1.png' style='width:64rpx;height:64rpx'>cover-image> cover-view> cover-view> <cover-view class='livezwf' hidden='{{liveplayzwf==2}}'> <cover-view class='livezwftext'> {{boxcontent.hyztms}} cover-view> <cover-view class='livezwftextjszc'>技术支持:xx电子有限公司 cover-view> cover-view> <cover-view class='top' bindtap='focusshang ' hidden='{{livehiddens}}'> <cover-image src='../../imgs/fahongbao1.png' class='tops'> cover-image> <cover-view class='guanbi' bindtap='guanbi'>cover-view> cover-view> live-player> ******html******** ********js********* tapName: function () { var videoContext = wx.createLivePlayerContext("videolivePlayer") console.log(1) if (this.data.fullScreen) { console.log(2) videoContext.exitFullScreen({ direction: 0, success: function() {}, fail: function() {}, }) } else { console.log(3) videoContext.requestFullScreen({ direction: -90, success: function() {}, fail: function() {}, complete: function() {} }) } }, *******js******** 事件无法触发报错信息如下 [图片]
2018-09-18