修改扫码功能报错的问题

master
lemon橪 2021-06-07 11:31:30 +08:00
parent db63ace4b0
commit 3cc2f1e019
1 changed files with 25 additions and 12 deletions

View File

@ -106,24 +106,32 @@ export default {
});
},
/**
* 扫码
*/
seacnCode() {
uni.scanCode({
success: function (res) {
let path = encodeURIComponent(res.result);
// TODO
// webview
setTimeout(() => {
uni.navigateTo({
url: "/pages/tabbar/home/web-view?src=" + path,
});
}, 100);
},
});
},
/**
* 唤醒客户端扫码
* 没权限去申请权限有权限获取扫码功能
*/
scan() {
// #ifdef APP-PLUS
if (permision.judgeIosPermission("camera")) {
uni.scanCode({
success: function (res) {
let path = encodeURIComponent(res.result);
// TODO
// webview
setTimeout(() => {
uni.navigateTo({
url: "/pages/tabbar/home/web-view?src=" + path,
});
}, 100);
},
});
this.seacnCode();
} else {
//
uni.showModal({
@ -136,6 +144,11 @@ export default {
},
});
}
// #endif
// #ifdef MP-WEIXIN
this.seacnCode();
// #endif
},
},
};