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

103 lines
1.5 KiB

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
  1. <template>
  2. <view class="head">
  3. <view class="headImage">
  4. <image :src="image" mode=""></image>
  5. </view>
  6. <view class="info">
  7. <view class="name">
  8. {{ name }}
  9. </view>
  10. <view class="tips">
  11. {{ tips }}
  12. </view>
  13. </view>
  14. <view class="right">
  15. <view class="phone">
  16. <image src="/static/image/home/phone.png" mode=""></image>
  17. {{ phone }}
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. props : {
  25. name : {
  26. default : '倾心.'
  27. },
  28. tips : {
  29. default : '手机号:1300000000'
  30. },
  31. phone : {
  32. default : '联系老板'
  33. },
  34. image : {
  35. default : '/static/image/center/headImage.png'
  36. }
  37. },
  38. data() {
  39. return {
  40. }
  41. },
  42. methods: {
  43. }
  44. }
  45. </script>
  46. <style scoped lang="scss">
  47. .head {
  48. display: flex;
  49. align-items: center;
  50. position: relative;
  51. image {
  52. width: 100%;
  53. height: 100%;
  54. }
  55. .headImage {
  56. width: 80rpx;
  57. height: 80rpx;
  58. background-size: 100% 100%;
  59. overflow: hidden;
  60. border-radius: 50%;
  61. margin-right: 40rpx;
  62. }
  63. .info {
  64. font-size: 28rpx;
  65. .name {
  66. font-size: 32rpx;
  67. display: flex;
  68. padding-bottom: 10rpx;
  69. view {
  70. display: flex;
  71. font-size: 20rpx;
  72. align-items: center;
  73. padding-left: 20rpx;
  74. }
  75. }
  76. .tips {
  77. font-size: 26rpx;
  78. }
  79. }
  80. .right{
  81. margin-left: auto;
  82. .phone{
  83. background-color: rgba($uni-color, 0.2);
  84. color: $uni-color;
  85. padding: 8rpx 16rpx;
  86. border-radius: 10rpx;
  87. image{
  88. width: 24rpx;
  89. height: 24rpx;
  90. }
  91. }
  92. }
  93. }
  94. </style>