my-shoucang.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view>
  3. <view class="page">
  4. <view class="list" v-for="(item,index) in list" :key="item.id" @click="todetails(item.id)">
  5. <view class="top u-flex u-row-between">
  6. <text class="left">{{item.job_name}}</text>
  7. <text class="right">{{item.salary_min}}-{{item.salary_max}}K·{{item.salary_structure}}</text>
  8. </view>
  9. <view class="content">
  10. <text class="item">{{item.companys.category_industry.name}}</text>
  11. <text class="item">{{item.companys.company_stage.name}}</text>
  12. <text class="item">{{item.companys.company_scale.name}}</text>
  13. </view>
  14. <view class="">
  15. <text class="item-text">{{item.work_province.slice(0,-1)}}-{{item.work_city}}</text>
  16. <text class="item-text">{{item.education_name}}</text>
  17. <text class="item-text">{{item.experience_name}}</text>
  18. </view>
  19. <view class="bottom u-flex">
  20. <image style="width: 50rpx;height: 50rpx; border-radius: 50%;margin-right: 16rpx;" :src="item.usermanager.avatar" mode=""></image>
  21. <text>{{item.usermanager.name}}·</text>
  22. <text>{{item.usermanager.job_text}}</text>
  23. </view>
  24. </view>
  25. <view style="height: 70vh;display: flex;justify-content: center;align-items: center;"
  26. v-if="list.length == 0">
  27. <u-empty text="暂无数据" mode="list"></u-empty>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. import {
  34. collect_get_list
  35. } from "@/units/inquire.js"
  36. export default {
  37. data() {
  38. return {
  39. page: 1,
  40. list: [],
  41. total: 0
  42. }
  43. },
  44. onLoad() {
  45. this.slist()
  46. },
  47. onReachBottom() {
  48. if (this.list.length != this.total) {
  49. this.page++
  50. this.slist()
  51. }
  52. },
  53. methods: {
  54. slist() {
  55. collect_get_list({
  56. page: this.page
  57. }).then(res => {
  58. this.total = res.data.total
  59. if (this.page == 1) {
  60. this.list = res.data.data
  61. } else {
  62. this.list = this.list.concat(res.data.data)
  63. }
  64. })
  65. },
  66. todetails(id) {
  67. uni.navigateTo({
  68. url: "/pagesB/details?id=" + id
  69. })
  70. }
  71. }
  72. }
  73. </script>
  74. <style lang="scss" scoped>
  75. .page {
  76. background-color: #f3f3f3;
  77. padding: 24rpx;
  78. height: calc(100vh - 48rpx);
  79. .top {
  80. .left {
  81. font-size: 32rpx;
  82. font-family: PingFangSC-Medium, PingFang SC;
  83. font-weight: 500;
  84. color: #222222;
  85. }
  86. .right {
  87. font-size: 32rpx;
  88. font-family: SFPro-Medium, SFPro;
  89. font-weight: 500;
  90. color: #0C66C2;
  91. }
  92. }
  93. .content {
  94. margin-top: 16rpx;
  95. box-sizing: border-box;
  96. font-size: 28rpx;
  97. font-family: PingFangSC-Regular, PingFang SC;
  98. font-weight: 400;
  99. color: #555555;
  100. margin-bottom: 20rpx;
  101. .item {
  102. margin-right: 16rpx;
  103. }
  104. }
  105. .list {
  106. background: #FFFFFF;
  107. border-radius: 16rpx;
  108. padding: 24rpx 24rpx 32rpx;
  109. height: 282rpx;
  110. box-sizing: border-box;
  111. }
  112. .item-text {
  113. height: 46rpx;
  114. background: #F3F3F3;
  115. border-radius: 4rpx;
  116. line-height: 46rpx;
  117. text-align: center;
  118. margin-right: 16rpx;
  119. padding: 6rpx 14rpx;
  120. font-size: 24rpx;
  121. font-family: PingFangSC-Regular, PingFang SC;
  122. font-weight: 400;
  123. color: #5F5F5F;
  124. }
  125. .bottom {
  126. margin-top: 24rpx;
  127. box-sizing: border-box;
  128. }
  129. }
  130. </style>