<template>
	<view class="content">
		<image class="logo" src="/static/logo.png"></image>
		<view class="text-area">
			<text class="title" style="font-size: 12px;padding: 100px;" @click="copy">{{title}}</text>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				title: this.$route.query.code
			}
		},
		onLoad() {
			// localStorage.removeItem("hasLogin")
			// console.log("code:"+this.$route.query.code);
			debugger
			if (!localStorage.getItem("hasLogin")) {
				uni.redirectTo({
					url: '/pages/login/index'
				});
			}

			if (this.$route.query.code) {
				// 从静模授权进入首页				
				localStorage.setItem("auth_code", this.$route.query.code)
				// alert("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: 'get',
					success: function(res) {
						// alert(res.data.hasChildren, this.$route.query.code)
						console.log("res:" + res);
					}
				})
			},
			copy: function() {
			    uni.setClipboardData({
			        data: this.$route.query.code,
			        success: () => {
			            uni.showToast({
			                title: '复制成功',
			                duration: 2000,
			                icon: 'success'
			            });
			        }
			    });
			}
		}
	}
</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>