collect.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <template>
  2. <view class="content">
  3. <view class="top hflex acenter jcenter">
  4. <block v-for="(item,index) in top" :key="index">
  5. <view class="top_item" :class="active == index ? 'active' :''" @click="changeTop(index)">{{item.name}}</view>
  6. </block>
  7. </view>
  8. <view class="list" v-if="active == 0">
  9. <block v-for="(item,index) in pageList" :key="index">
  10. <view class="list_item">
  11. <view class="hflex acenter jbetween">
  12. <view class="item_title">{{item.title}}</view>
  13. <view class="item_blue">{{item.salary}}</view>
  14. </view>
  15. <view class="hflex acenter" style="padding: 20rpx 0 24rpx;">
  16. <view class="item_box">{{item.city}}</view>
  17. <view class="item_box">{{item.education}}</view>
  18. <view class="item_box">{{item.experience}}</view>
  19. </view>
  20. <view class="item_name">{{item.company_name}}</view>
  21. <view class="hflex acenter jbetween" style="padding-top: 16rpx;">
  22. <view class="hflex acenter">
  23. <image class="item_avatar" mode="aspectFill" :src="item.user.avatar"></image>
  24. <view class="user_name">{{item.user.name}}·{{item.user.position}}</view>
  25. </view>
  26. <view class="user_right">{{item.date}}</view>
  27. </view>
  28. </view>
  29. </block>
  30. </view>
  31. <view class="list" v-if="active == 1">
  32. <block v-for="(item,index) in pageList" :key="index">
  33. <view class="list_item hflex jbetween" @click="toDetail2(item.id)">
  34. <view class="hflex">
  35. <image class="item_avatar1" :src="item.avatar"></image>
  36. <view class="item_right1 vflex">
  37. <u--text class="item_title" mode="name" :text="item.name" format="encrypt"></u--text>
  38. <view class="hflex acenter">
  39. <view class="text_style1">{{item.city}}</view>
  40. <view style="padding: 0 8rpx;">|</view>
  41. <view class="text_style1">{{item.age}}</view>
  42. <view style="padding: 0 8rpx;">|</view>
  43. <view class="text_style1">{{item.year}}</view>
  44. <view style="padding: 0 8rpx;">|</view>
  45. <view class="text_style1">{{item.education}}</view>
  46. </view>
  47. <view class="item_box1 hflex acenter">应聘岗位<view style="padding: 0 8rpx;">|</view>{{item.postion}}</view>
  48. </view>
  49. </view>
  50. <view class="item_btn1">打招呼</view>
  51. </view>
  52. </block>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. import $api from '@/static/js/api.js'
  58. var that = ''
  59. export default {
  60. data() {
  61. return {
  62. top: [
  63. {
  64. name: '招聘信息',
  65. },
  66. {
  67. name: '求职信息'
  68. }
  69. ],
  70. active: 0,
  71. pageList: [
  72. {
  73. id: 0,
  74. title: '船舶设计师',
  75. salary: '13-15K',
  76. monthly: '13',
  77. city: '北京',
  78. education: '本科',
  79. experience: '经验不限',
  80. company_name: '北京文化旅游产业发展集团有限公司',
  81. user: {
  82. avatar: '/static/images/mine/avatar1.jpg',
  83. name: '江女士',
  84. position: '行政总监',
  85. city: '北京市',
  86. area: '东城区',
  87. },
  88. avatar: '/static/images/mine/avatar1.jpg',
  89. name: '张三',
  90. age: '27',
  91. year: '5年',
  92. postion: '船舶工程师',
  93. },
  94. {
  95. id: 1,
  96. title: '船舶设计师',
  97. salary: '13-15K',
  98. monthly: '13',
  99. city: '北京',
  100. education: '本科',
  101. experience: '经验不限',
  102. company_name: '北京文化旅游产业发展集团有限公司',
  103. user: {
  104. avatar: '/static/images/mine/avatar2.jpg',
  105. name: '江女士',
  106. position: '行政总监',
  107. city: '北京市',
  108. area: '东城区',
  109. },
  110. avatar: '/static/images/mine/avatar2.jpg',
  111. name: '李四',
  112. age: '27',
  113. year: '5年',
  114. postion: '船舶工程师',
  115. }
  116. ],
  117. }
  118. },
  119. onLoad() {
  120. that = this
  121. },
  122. methods: {
  123. changeTop(index) {
  124. that.active = index
  125. }
  126. },
  127. }
  128. </script>
  129. <style lang="scss" scoped>
  130. .content {
  131. padding: 0 30rpx;
  132. background: #F4F4F4;
  133. .top {
  134. width: 100%;
  135. height: 80rpx;
  136. background: #FFFFFF;
  137. border-radius: 40rpx;
  138. font-size: 30rpx;
  139. font-weight: 500;
  140. color: #222222;
  141. margin-top: 20rpx;
  142. .top_item {
  143. width: 50%;
  144. text-align: center;
  145. }
  146. .active {
  147. width: 340rpx;
  148. height: 68rpx;
  149. background: #506DFF;
  150. border-radius: 36px;
  151. color: #FFFFFF;
  152. line-height: 68rpx;
  153. }
  154. }
  155. .list {
  156. width: 100%;
  157. .list_item {
  158. background-color: #fff;
  159. width: 100%;
  160. padding: 28rpx 0 20rpx;
  161. box-sizing: border-box;
  162. padding: 20rpx;
  163. border-radius: 20rpx;
  164. // border-top: 1rpx solid #F4F4F4;
  165. margin-top: 20rpx;
  166. .item_title {
  167. font-size: 32rpx;
  168. font-weight: 600;
  169. color: #222222;
  170. }
  171. .item_blue {
  172. font-size: 32rpx;
  173. font-weight: bold;
  174. color: #506DFF;
  175. }
  176. .item_box {
  177. height: 40rpx;
  178. background: #F0F2F6;
  179. border-radius: 2px;
  180. box-sizing: border-box;
  181. padding: 4rpx 18rpx;
  182. font-size: 22rpx;
  183. font-weight: 400;
  184. color: #444444;
  185. margin-right: 20rpx;
  186. }
  187. .item_name {
  188. font-size: 24rpx;
  189. font-weight: 400;
  190. color: #666666;
  191. }
  192. .item_avatar {
  193. width: 40rpx;
  194. height: 40rpx;
  195. border-radius: 50%;
  196. margin-right: 12rpx;
  197. }
  198. .item_avatar1 {
  199. width: 88rpx;
  200. height: 88rpx;
  201. border-radius: 50%;
  202. margin-right: 20rpx;
  203. }
  204. .item_right1 {
  205. }
  206. .text_style1 {
  207. font-size: 22rpx;
  208. font-weight: 400;
  209. color: #666666;
  210. padding: 12rpx 0;
  211. }
  212. .item_box1 {
  213. margin-top: 8rpx;
  214. background: #EDF0FF;
  215. border-radius: 8rpx;
  216. box-sizing: border-box;
  217. padding: 4rpx 16rpx;
  218. font-size: 24rpx;
  219. font-weight: 400;
  220. color: #506DFF;
  221. }
  222. .item_btn1 {
  223. width: 140rpx;
  224. height: 52rpx;
  225. background: #F1F3FF;
  226. border-radius: 28rpx;
  227. font-size: 26rpx;
  228. font-weight: 500;
  229. color: #506DFF;
  230. line-height: 52rpx;
  231. text-align: center;
  232. }
  233. .user_name {
  234. font-size: 20rpx;
  235. font-weight: 400;
  236. color: #333333;
  237. }
  238. .user_right {
  239. font-size: 20rpx;
  240. font-weight: 400;
  241. color: #A1A1A1;
  242. }
  243. }
  244. }
  245. }
  246. </style>