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

128 lines
2.0 KiB

6 months ago
  1. <template>
  2. <view class="boss-item">
  3. <view class="head">
  4. <view class="headImage">
  5. <image src="/static/image/center/headImage.png" mode=""></image>
  6. </view>
  7. <view class="info">
  8. <view class="name">
  9. 李老板
  10. <view>
  11. 装配电工
  12. </view>
  13. </view>
  14. <view class="tips">
  15. · 汉族 · 本科 · 应届生
  16. </view>
  17. </view>
  18. <view class="right">
  19. <view class="price">
  20. 12-18K
  21. </view>
  22. </view>
  23. </view>
  24. <view class="bottom">
  25. <view class="time">
  26. 09月23日 1620
  27. </view>
  28. <view class="phone">
  29. <image src="/static/image/home/phone.png" mode=""></image>
  30. 联系他
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. data() {
  38. return {
  39. }
  40. },
  41. methods: {
  42. }
  43. }
  44. </script>
  45. <style scoped lang="scss">
  46. .boss-item{
  47. background-color: #fff;
  48. border-radius: 20rpx;
  49. .head {
  50. display: flex;
  51. align-items: center;
  52. position: relative;
  53. padding: 20rpx;
  54. image {
  55. width: 100%;
  56. height: 100%;
  57. }
  58. .headImage {
  59. width: 80rpx;
  60. height: 80rpx;
  61. background-size: 100% 100%;
  62. overflow: hidden;
  63. border-radius: 50%;
  64. margin-right: 40rpx;
  65. }
  66. .info {
  67. font-size: 28rpx;
  68. .name {
  69. font-size: 32rpx;
  70. display: flex;
  71. padding-bottom: 10rpx;
  72. view {
  73. display: flex;
  74. font-size: 24rpx;
  75. align-items: center;
  76. margin-left: 20rpx;
  77. background: rgba($uni-color, 0.2);
  78. color: $uni-color;
  79. padding: 10rpx;
  80. border-radius: 10rpx;
  81. }
  82. }
  83. .tips {
  84. font-size: 24rpx;
  85. }
  86. }
  87. .right{
  88. margin-left: auto;
  89. font-size: 24rpx;
  90. .price{
  91. color: $uni-color;
  92. }
  93. }
  94. }
  95. .bottom{
  96. display: flex;
  97. justify-content: space-between;
  98. align-items: flex-end;
  99. font-size: 24rpx;
  100. padding: 20rpx;
  101. padding-top: 0;
  102. .time{
  103. color: #999999;
  104. }
  105. .phone{
  106. background-color: rgba($uni-color, 0.2);
  107. color: $uni-color;
  108. padding: 8rpx 16rpx;
  109. border-radius: 10rpx;
  110. image{
  111. width: 20rpx;
  112. height: 20rpx;
  113. }
  114. }
  115. }
  116. }
  117. </style>