| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <view class="container">
- <view class="body">
- <!-- 个人头像区域 -->
- <view class="body_box">
- 个人头像
- <view class="box_right">
- <img class="img" src="../../static/my/portrait.png" />
- <img class="img2" src="../../static/my/right.png" />
- </view>
- </view>
- <!-- 账号名区域 -->
- <view class="body_box">
- 账号名
- <view class="box_right">
- <view class="msg">张三</view>
- <img class="img2" src="../../static/my/right.png" />
- </view>
- </view>
- <!-- ID区域 -->
- <view class="body_box">
- ID
- <view class="box_right">
- <view class="msg">1925689</view>
- <img class="img2" src="../../static/my/right.png" />
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {}
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- background-color: #ebeced;
- .body {
- box-sizing: border-box;
- margin-top: 20rpx;
- padding: 0 30rpx;
- height: calc(100vh - 20rpx);
- background-color: #fff;
- .body_box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 100rpx;
- font-size: 28rpx;
- border-bottom: 1rpx solid #e6e6e6;
- .box_right {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- height: 100rpx;
- .img {
- width: 64rpx;
- height: 64rpx;
- }
- .img2 {
- margin-left: 7rpx;
- width: 47rpx;
- height: 47rpx;
- }
- .msg {
- color: #808080;
- }
- }
- }
- }
- }
- </style>
|