特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

67 lines
1006 B

<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>