特易招,招聘小程序
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

8 months ago
  1. <template>
  2. <view class="head">
  3. <view class="headImage">
  4. <image src="/static/image/center/3.png" mode=""></image>
  5. </view>
  6. <view class="info">
  7. <view class="name">
  8. 倾心.
  9. </view>
  10. <view class="tips">
  11. 手机号1300000000
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. }
  21. },
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style scoped lang="scss">
  27. .head {
  28. display: flex;
  29. align-items: center;
  30. position: relative;
  31. image{
  32. width: 100%;
  33. height: 100%;
  34. }
  35. .headImage {
  36. width: 70rpx;
  37. height: 70rpx;
  38. background-size: 100% 100%;
  39. overflow: hidden;
  40. border-radius: 50%;
  41. margin-right: 40rpx;
  42. }
  43. .info {
  44. font-size: 28rpx;
  45. .name {
  46. font-size: 32rpx;
  47. display: flex;
  48. padding-bottom: 10rpx;
  49. view{
  50. display: flex;
  51. font-size: 20rpx;
  52. align-items: center;
  53. padding-left: 20rpx;
  54. }
  55. }
  56. .tips {
  57. font-size: 26rpx;
  58. }
  59. }
  60. }
  61. </style>