You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<view class="wd-flex wd-flex-col wd-flex-center" style="height: 100%; gap: 10px">
|
|
|
|
<icon type="waiting" size="40" />
|
|
|
|
<button @tap="btnLogin">允许登陆</button>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {
|
|
|
|
getAccessToken,getOpenId
|
|
|
|
} from '@/utils/auth'
|
|
|
|
import {qrLogin}from '@/api/login'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
scene:""
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onShow(res) {
|
|
|
|
console.log(res)
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
btnLogin() {
|
|
|
|
|
|
|
|
const openid = getOpenId()
|
|
|
|
console.log('登陆信息发送', this.scene)
|
|
|
|
console.log('opeid', openid)
|
|
|
|
qrLogin({
|
|
|
|
code:this.scene,
|
|
|
|
openid:getAccessToken()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onLoad(query) {
|
|
|
|
// scene 需要使用 decodeURIComponent 才能获取到生成二维码时传入的 scene
|
|
|
|
this.scene = decodeURIComponent(query.scene)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss"></style>
|