<template>
|
|
<view class="head">
|
|
<view class="headImage">
|
|
<image src="/static/image/center/3.png" mode=""></image>
|
|
</view>
|
|
<view class="info">
|
|
<view class="name">
|
|
倾心.
|
|
</view>
|
|
<view class="tips">
|
|
手机号:1300000000
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.head {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
image{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.headImage {
|
|
width: 70rpx;
|
|
height: 70rpx;
|
|
background-size: 100% 100%;
|
|
overflow: hidden;
|
|
border-radius: 50%;
|
|
margin-right: 40rpx;
|
|
}
|
|
|
|
.info {
|
|
font-size: 28rpx;
|
|
.name {
|
|
font-size: 32rpx;
|
|
display: flex;
|
|
padding-bottom: 10rpx;
|
|
view{
|
|
display: flex;
|
|
font-size: 20rpx;
|
|
align-items: center;
|
|
padding-left: 20rpx;
|
|
}
|
|
}
|
|
|
|
.tips {
|
|
font-size: 26rpx;
|
|
}
|
|
}
|
|
}
|
|
</style>
|