<template>
	<view class="content">
		<image class="logo" src="/static/logo.png"></image>
		<view class="text-area">
			<text class="title">{{title}}</text>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				title: this.$route.query.code
			}
		},
		onLoad() {
			debugger
			if(!localStorage.getItem("hasLogin")){
				uni.redirectTo({
				    url: '/pages/login/index'
				});
			}
			
			if(this.$route.query.code){
				// 从静模授权进入首页				
				localStorage.setItem("auth_code",this.$route.query.code)
				
				this.getuserinfo3rd()
			} 

		},
		methods: {
		    // 获取敏感信息
			getuserinfo3rd:function(){
				uni.request({
				   url: 'http://127.0.0.1:4523/m1/2230462-1135055-default/getData?code='+this.$route.query.code,
				   method:'POST',
				   success: function (res) {
					   alert(res.data.hasChildren,this.$route.query.code)
						console.log("res:"+res);
				   }
				})
			}
		}
	}
</script>

<style>
	.content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.logo {
		height: 200rpx;
		width: 200rpx;
		margin-top: 200rpx;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 50rpx;
	}

	.text-area {
		display: flex;
		justify-content: center;
	}

	.title {
		font-size: 36rpx;
		color: #8f8f94;
	}
</style>