mycode.vue 640 字节
<template>
	<!-- 居中 -->

	<view class="wrapper">
		<image mode="widthFix" :src="qrcode"></image>
	</view>

</template>

<script>
	import request from "../../../App.vue"
	export default {
		data() {
			return {
				qrcode:''
			};
		},
		onLoad:function(){
			request.post('/api/user/userPoster').then(r=>{
				if(r.code == 1){
					this.qrcode = r.data.url
				}
			})
		}
	}
</script>

<style lang="scss" scoped>
	page {
		background-image: url("../../../static/imgs/codeback.png");
		background-size: cover;
		display: flex;
		justify-content: center;
		align-items: center;

	}
	.wrapper{
		>image{
			width: 622rpx;
		}
	}
</style>