my-shoucang.vue 3.5 KB

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