2024-03-31 23:41:45 +08:00
|
|
|
<template>
|
|
|
|
<div class="app-content">
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: "build",
|
|
|
|
data() {
|
|
|
|
return {
|
2024-04-03 01:46:39 +08:00
|
|
|
uId:null,
|
2024-03-31 23:41:45 +08:00
|
|
|
show: true,
|
|
|
|
dialogVisible: false,
|
|
|
|
bindPhoneVo: {
|
|
|
|
openId: '',
|
|
|
|
phone: ''
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
watch: {},
|
|
|
|
created() {
|
2024-04-03 01:46:39 +08:00
|
|
|
this.uId=this.getQueryString('userOpenId') || '';
|
2024-03-31 23:41:45 +08:00
|
|
|
this.wechatLogin();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
wechatLogin() {
|
|
|
|
// 处理微信授权登录
|
|
|
|
let openId = this.getQueryString('openId') || '';
|
|
|
|
// token === '' && openId != '' 只要这种情况,未绑定账号
|
|
|
|
if(openId != '') {
|
|
|
|
// 绑定账号
|
2024-04-03 01:46:39 +08:00
|
|
|
console.log("dialogVisible===>",openId,this.uId);
|
2024-03-31 23:41:45 +08:00
|
|
|
} else {
|
|
|
|
// 如果绑定了,返回成功
|
|
|
|
console.log("我要去登录了===>");
|
|
|
|
let _baseUrl = "https://szgc.jhncidg.com";
|
2024-04-03 01:46:39 +08:00
|
|
|
window.location = _baseUrl + '/jhapi/wxAuth/authorize?returnUrl=' + _baseUrl + "/#/wxAuth?uid="+this.uId
|
2024-03-31 23:41:45 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
saveBind() {
|
|
|
|
console.log("saveBind");
|
|
|
|
},
|
|
|
|
getQueryString (paramName) {
|
|
|
|
if(window.location.href.indexOf('?') == -1) return '';
|
|
|
|
let searchString = window.location.href.split('?')[1];
|
|
|
|
let i, val, params = searchString.split("&");
|
|
|
|
for (i=0;i<params.length;i++) {
|
|
|
|
val = params[i].split("=");
|
|
|
|
if (val[0] == paramName) {
|
|
|
|
return val[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<style scope>
|
|
|
|
.app-content {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #191d28
|
|
|
|
url("https://szgcwx.jhncidg.com/staticFiles/img/CORE_40247DD946964A15AA0D4000E1031E19.png")
|
|
|
|
no-repeat bottom/100%;
|
|
|
|
}
|
|
|
|
</style>
|