zhiwei-list.vue 3.0 KB

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