Browse Source

Merge remote-tracking branch 'origin/master'

master
parent
commit
a3f54e634b
  1. 17
      sub/common/waiting.vue

17
sub/common/waiting.vue

@ -1,7 +1,7 @@
<template> <template>
<view class="wd-flex wd-flex-col wd-flex-center" style="height: 100%; gap: 10px"> <view class="wd-flex wd-flex-col wd-flex-center" style="height: 100%; gap: 10px">
<icon type="waiting" size="40" /> <icon type="waiting" size="40" />
<button click="btnLogin">允许登陆</button> <button @tap="btnLogin">允许登陆</button>
</view> </view>
</template> </template>
@ -13,7 +13,9 @@
export default { export default {
data() { data() {
return {} return {
scene:""
}
}, },
onShow(res) { onShow(res) {
console.log(res) console.log(res)
@ -21,21 +23,20 @@
methods: { methods: {
btnLogin() { btnLogin() {
const scene = decodeURIComponent(query.scene)
const openid = getOpenId() const openid = getOpenId()
console.log('登陆信息发送', scene) console.log('登陆信息发送', this.scene)
console.log('opeid', openid) console.log('opeid', openid)
qrLogin({ qrLogin({
code:scene, code:this.scene,
openid:openid openid:getAccessToken()
}) })
} }
}, },
onLoad(query) { onLoad(query) {
// scene 使 decodeURIComponent scene // scene 使 decodeURIComponent scene
const scene = decodeURIComponent(query.scene) this.scene = decodeURIComponent(query.scene)
console.log('登陆信息发送', scene)
} }

Loading…
Cancel
Save