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

81 lines
1.2 KiB

6 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. .bottom{
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: flex-end;
  61. font-size: 24rpx;
  62. .time{
  63. color: #999999;
  64. }
  65. .phone{
  66. background-color: rgba($uni-color, 0.2);
  67. color: $uni-color;
  68. padding: 8rpx 16rpx;
  69. border-radius: 10rpx;
  70. image{
  71. width: 20rpx;
  72. height: 20rpx;
  73. }
  74. }
  75. }
  76. }
  77. </style>