Commit 3473488f by 张卓

扫码进入加nextTick

parent cf8269ac
...@@ -144,6 +144,7 @@ export default { ...@@ -144,6 +144,7 @@ export default {
if(options.scene.indexOf('_') == -1){ if(options.scene.indexOf('_') == -1){
this.withoutScene = false; this.withoutScene = false;
//新二维码扫码进入 //新二维码扫码进入
wx.nextTick(() => {
indexApi.getShareSceneRecord(options.scene).then(res=>{ indexApi.getShareSceneRecord(options.scene).then(res=>{
this.withoutScene = true; this.withoutScene = true;
if(res.data.code == '200'){ if(res.data.code == '200'){
...@@ -174,7 +175,9 @@ export default { ...@@ -174,7 +175,9 @@ export default {
} }
}).catch((err)=>{ }).catch((err)=>{
this.withoutScene = true; this.withoutScene = true;
}) })
});
}else { }else {
//来自扫码 //来自扫码
// options 中的scene需要使用decodeURIComponent才能获取到生成二维码时传入的scene // options 中的scene需要使用decodeURIComponent才能获取到生成二维码时传入的scene
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment