zhiwei-list.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <template>
  2. <view class="content">
  3. <view class="list-item" v-for="(item,index) in list" :key="index" @click="toinfo(item)" v-if="list.length > 0">
  4. <view class="top hflex acenter jbetween">
  5. <text class="text_hide">{{item.title}}</text>
  6. <text>{{item.salary_min}}-{{item.salary_max}}K·{{item.salary_month}}薪</text>
  7. </view>
  8. <view class="hflex acetner">
  9. <view class="text-box" v-if="item.education">{{item.education}}</view>
  10. <view class="text-box" v-if="item.experience_min">{{item.experience_min}}-{{item.experience_max}}年
  11. </view>
  12. </view>
  13. <view class="bottom hflex acenter jbetween">
  14. <text>{{item.name}} {{item.mobile}}</text>
  15. <text>{{item.city}}</text>
  16. </view>
  17. </view>
  18. <view class="hflex acenter jcenter " style="height: 100vh;" v-else>
  19. <u-empty mode="data"></u-empty>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. import $api from '@/static/js/api.js'
  25. export default {
  26. data() {
  27. return {
  28. list: [],
  29. page: 1,
  30. last_page: 1,
  31. }
  32. },
  33. onLoad() {
  34. this.getlist()
  35. },
  36. onReachBottom() {
  37. if (this.page < this.last_page) {
  38. this.page++
  39. this.getlist()
  40. } else {
  41. uni.$u.toast('已经到底了')
  42. return
  43. }
  44. },
  45. methods: {
  46. toinfo(item) {
  47. uni.navigateTo({
  48. url: '/pageC/zhiwei-detail?id=' + item.id
  49. })
  50. },
  51. getlist() {
  52. var _this = this
  53. $api.req({
  54. url: 'job',
  55. method: 'GET',
  56. data: {
  57. is_page: 1,
  58. page: _this.page,
  59. limit: 10,
  60. }
  61. }, function(res) {
  62. if (res.code == 10000) {
  63. _this.list = _this.list.concat(res.data.list)
  64. _this.last_page = res.data.last_page
  65. }
  66. })
  67. }
  68. }
  69. }
  70. </script>
  71. <style lang="scss">
  72. .content {
  73. padding: 20rpx 24rpx;
  74. background: #F4F4F4;
  75. .list-item {
  76. background: #FFFFFF;
  77. border-radius: 16rpx;
  78. margin: 0 0 20rpx;
  79. box-sizing: border-box;
  80. padding: 26rpx 20rpx;
  81. .top {
  82. padding-bottom: 20rpx;
  83. text:first-child {
  84. font-size: 32rpx;
  85. font-family: PingFangSC, PingFang SC;
  86. font-weight: 600;
  87. color: #222222;
  88. max-width: 432rpx;
  89. }
  90. text:last-child {
  91. font-size: 28rpx;
  92. font-family: JDZhengHT, JDZhengHT;
  93. font-weight: 400;
  94. color: #00B0B0;
  95. }
  96. }
  97. .company {
  98. padding: 16rpx 0;
  99. text {
  100. font-size: 24rpx;
  101. font-family: PingFangSC, PingFang SC;
  102. font-weight: 400;
  103. color: #666666;
  104. }
  105. }
  106. .text-box {
  107. background: #F4F4F4;
  108. border-radius: 4rpx;
  109. padding: 4rpx 10rpx;
  110. font-size: 20rpx;
  111. font-family: PingFangSC, PingFang SC;
  112. font-weight: 400;
  113. color: #555555;
  114. margin: 0 16rpx 0 0;
  115. }
  116. .bottom {
  117. padding: 26rpx 0 0;
  118. text:first-child {
  119. font-size: 20rpx;
  120. font-family: SFPro, SFPro;
  121. font-weight: 400;
  122. color: #444444;
  123. }
  124. text:last-child {
  125. font-size: 20rpx;
  126. font-family: PingFangSC, PingFang SC;
  127. font-weight: 400;
  128. color: #999999;
  129. }
  130. }
  131. }
  132. }
  133. </style>