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

92 lines
1.4 KiB

8 months ago
  1. <template>
  2. <view class="work-item">
  3. <view class="top">
  4. <view class="title">
  5. 产品经理
  6. </view>
  7. <view class="price">
  8. 12-18K
  9. </view>
  10. </view>
  11. <view class="tag-list">
  12. <view
  13. v-for="(item, index) in 5"
  14. :key="index">
  15. 包吃
  16. </view>
  17. </view>
  18. <view class="bottom">
  19. <view class="address">
  20. 2.5km | 楚河汉区
  21. </view>
  22. <view class="time">
  23. 09月23日 1620
  24. </view>
  25. <view class="phone">
  26. <image src="/static/image/home/phone.png" mode=""></image>
  27. 联系老板
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. }
  37. },
  38. methods: {
  39. }
  40. }
  41. </script>
  42. <style scoped lang="scss">
  43. .work-item{
  44. background-color: #fff;
  45. padding: 20rpx;
  46. border-radius: 20rpx;
  47. .top{
  48. display: flex;
  49. justify-content: space-between;
  50. font-weight: 900;
  51. .title{
  52. }
  53. .price{
  54. color: $uni-color;
  55. }
  56. }
  57. .tag-list{
  58. display: flex;
  59. flex-wrap: wrap;
  60. &>view{
  61. margin: 10rpx;
  62. padding: 10rpx;
  63. background-color: #EFF2F1;
  64. font-size: 24rpx;
  65. border-radius: 10rpx;
  66. }
  67. }
  68. .bottom{
  69. display: flex;
  70. justify-content: space-between;
  71. align-items: flex-end;
  72. font-size: 24rpx;
  73. .time{
  74. color: #999999;
  75. }
  76. .phone{
  77. background-color: rgba($uni-color, 0.2);
  78. color: $uni-color;
  79. padding: 8rpx 16rpx;
  80. border-radius: 10rpx;
  81. image{
  82. width: 20rpx;
  83. height: 20rpx;
  84. }
  85. }
  86. }
  87. }
  88. </style>