uniapp vue3写个非常好看的个人页面源码要求有头像姓名级别手机号码部门
<template>
<view class="container">
<view class="header">
<image class="avatar" src="./assets/avatar.png"></image>
<view class="info">
<view class="name">张三</view>
<view class="level">Lv. 5</view>
<view class="phone">手机号码:138****1234</view>
<view class="department">部门:销售部</view>
</view>
</view>
</view>
</template>
<style>
.container {
padding: 20px;
}
.header {
display: flex;
align-items: center;
}
.avatar {
width: 80px;
height: 80px;
border-radius: 50%;
margin-right: 20px;
}
.info {
display: flex;
flex-direction: column;
}
.name {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.level {
font-size: 18px;
color: #666;
margin-bottom: 10px;
}
.phone,
.department {
font-size: 16px;
color: #999;
margin-bottom: 10px;
}
</style
原文地址: https://www.cveoy.top/t/topic/dwl6 著作权归作者所有。请勿转载和采集!