导游中台-游客端
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.

97 lines
1.5 KiB

11 months ago
<template>
<view class="bg">
</view>
</template>
<script>
export default {
data() {
return {
10 months ago
11 months ago
}
11 months ago
},
10 months ago
onLoad(option) {
if(!option.code) {
this.gotoPath('/pages/index/index')
}else {
this.Post({code: option.code},'/api/wechat/oauth_callback').then(res => {
10 months ago
return;
10 months ago
if(res.code == 1) {
this.$store.commit('changeUserInfo', res.data)
10 months ago
window.location.href = option.state
11 months ago
}
11 months ago
})
}
10 months ago
},
onShow() {
},
methods: {
11 months ago
}
}
</script>
<style lang="scss" scoped>
.bg {
width: 100vw;
height: 100vh;
10 months ago
// background-image: url('https://static.ticket.sz-trip.com/tourGuide/images/login/bg.png');
11 months ago
background-size: 100% 100%;
padding-top: 428rpx;
}
.title-img {
display: block;
margin: auto;
width: 336.67rpx;
height: 54rpx;
}
.item {
width: 587rpx;
height: 80rpx;
background: #FFFFFF;
border-radius: 40rpx;
margin: 32rpx auto 0;
padding: 0 26rpx;
.icon {
width: 26.67rpx;
height: 26.67rpx;
margin-right: 12rpx;
}
input {
flex: 1;
font-weight: 500;
font-size: 25rpx;
color: #ABABAB;
}
.code-img {
width: 153rpx;
height: 55rpx;
margin-left: 10rpx;
}
.eye-img {
width: 26.67rpx;
height: 26.67rpx;
margin-left: 10rpx;
}
}
.btn {
width: 547rpx;
line-height: 80rpx;
background: #96684F;
border-radius: 40rpx;
margin: 100rpx auto 0;
font-weight: bold;
font-size: 35rpx;
color: #FFFFFF;
text-align: center;
}
</style>