user-center.vue 692 字节
<template>
	<view class="conetnt">
		<view class="itemBox">
			头像
			<view class="">
				<image src="../../static/ic_21@2x.png" mode="" style="    width: 60rpx;
    height: 60rpx;
    border-radius: 50%;"></image>
			</view>
		</view>
		<view class="itemBox">
			昵称
			<view class="" style="font-size: 28rpx;">
				桃花到岛主
			</view>
		</view>
	</view>
</template>

<script>
</script>

<style>
	.conetent{
		min-height: 100vh;
		background-color: #F7F8FA;
	}
	.itemBox {
		display: flex;
		border-bottom: 2rpx solid #F7F8FA;
		padding: 32rpx;
		box-sizing: border-box;
		font-size: 32rpx;
		color: #323233;
		align-items: center;
		justify-content: space-between;
	}
</style>