苹果X在非自定义tabbar页面拉起扫一扫后,导致tabbar页的tab消失不见
- 当前 Bug 的表
现(可附上截图)
- 预期表现
预期应该在其他页面调用扫一扫功能后,返回有自定义tabbar页面的时候tabbar还是存在的,但是现在在其他非tabbar页面调用扫一扫后返回有tabbar页面时tabbar消失了
- 提供一个最简复现 Demo
index.js: openCam(){ let that = this ; wx.navigateTo({ url: '../open/open' , }) }, open.js: openCam() { console.log( '打开摄像头' ) let that = this ; wx.scanCode({ success(res) { console.log( '扫码' ,res) }, fail(err) { console.log( '扫码失败' ,err) } }) }, |