Browse Source

小程序内部调用微信扫一扫后 无法扫描微信小程序二维码没有反应

master
kuaileWu 3 months ago
parent
commit
feed9016c8
  1. 7
      components/tabbar.vue

7
components/tabbar.vue

@ -85,6 +85,13 @@
// #ifdef MP-WEIXIN
uni.scanCode({
success: (res) => {
if(res.path) {
const sceneParam = res.path.split('scene=')[1];
if (sceneParam && sceneParam.indexOf('dp=') > -1) {
var encodedScene = encodeURIComponent(sceneParam);
res.path = res.path.replace(`scene=${sceneParam}`, `scene=${encodedScene}`);
}
}
var url = `/${res.path}`;
uni.navigateTo({ url });
},

Loading…
Cancel
Save