user-center.vue
692 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<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>