Browse Source

快捷登陆

master
赵鹏 2 months ago
parent
commit
3393797caf
  1. 2
      App.vue
  2. 19
      sub/common/waiting.vue

2
App.vue

@ -77,7 +77,7 @@ export default {
state: 'default', state: 'default',
userType: this.getUserType() userType: this.getUserType()
} }
setOpenId(res.code); setOpenId(res.code);
// //
this.$store.dispatch('Login', data).then(() => { this.$store.dispatch('Login', data).then(() => {
this.loginSuccess() this.loginSuccess()

19
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,29 +13,30 @@
export default { export default {
data() { data() {
return {} return {
scene:""
}
}, },
onShow(res) { onShow(res) {
console.log(res) console.log(res)
}, },
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