2024-09-29 17:26:58 +00:00
|
|
|
import {
|
|
|
|
mutations
|
|
|
|
} from '@/uni_modules/uni-id-pages/common/store.js'
|
|
|
|
import config from '@/uni_modules/uni-id-pages/config.js'
|
|
|
|
const mixin = {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
config,
|
|
|
|
uniIdRedirectUrl: '',
|
|
|
|
isMounted: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onUnload() {
|
|
|
|
// #ifdef H5
|
|
|
|
document.onkeydown = false
|
|
|
|
// #endif
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.isMounted = true
|
|
|
|
},
|
|
|
|
onLoad(e) {
|
|
|
|
if (e.is_weixin_redirect) {
|
|
|
|
uni.showLoading({
|
|
|
|
mask: true
|
|
|
|
})
|
|
|
|
|
|
|
|
if (window.location.href.includes('#')) {
|
|
|
|
// 将url通过 ? 分割获取后面的参数字符串 再通过 & 将每一个参数单独分割出来
|
|
|
|
const paramsArr = window.location.href.split('?')[1].split('&')
|
|
|
|
paramsArr.forEach(item => {
|
|
|
|
const arr = item.split('=')
|
|
|
|
if (arr[0] == 'code') {
|
|
|
|
e.code = arr[1]
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
this.$nextTick(n => {
|
|
|
|
// console.log(this.$refs.uniFabLogin);
|
|
|
|
this.$refs.uniFabLogin.login({
|
|
|
|
code: e.code
|
|
|
|
}, 'weixin')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e.uniIdRedirectUrl) {
|
2024-10-03 15:43:31 +00:00
|
|
|
console.log(e.uniIdRedirectUrl)
|
2024-09-29 17:26:58 +00:00
|
|
|
this.uniIdRedirectUrl = decodeURIComponent(e.uniIdRedirectUrl)
|
|
|
|
}
|
|
|
|
|
|
|
|
// #ifdef MP-WEIXIN
|
|
|
|
if (getCurrentPages().length === 1) {
|
|
|
|
uni.hideHomeButton()
|
|
|
|
console.log('已隐藏:返回首页按钮');
|
|
|
|
}
|
|
|
|
// #endif
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
needAgreements() {
|
|
|
|
if (this.isMounted) {
|
|
|
|
if (this.$refs.agreements) {
|
|
|
|
return this.$refs.agreements.needAgreements
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
agree: {
|
|
|
|
get() {
|
|
|
|
if (this.isMounted) {
|
|
|
|
if (this.$refs.agreements) {
|
|
|
|
return this.$refs.agreements.isAgree
|
|
|
|
} else {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
set(agree) {
|
|
|
|
if (this.$refs.agreements) {
|
|
|
|
this.$refs.agreements.isAgree = agree
|
|
|
|
} else {
|
|
|
|
console.log('不存在 隐私政策协议组件');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
loginSuccess(e) {
|
|
|
|
console.log("登录成功"+JSON.stringify(e))
|
2024-10-03 15:43:31 +00:00
|
|
|
console.log("============"+this.uniIdRedirectUrl)
|
2024-09-29 17:26:58 +00:00
|
|
|
mutations.loginSuccess({
|
|
|
|
...e,
|
|
|
|
uniIdRedirectUrl: this.uniIdRedirectUrl
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default mixin
|