recruitDetail.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="hflex acenter jbetween">
  5. <view class="top">{{pageData.title}}</view>
  6. <view class="text_blue">{{pageData.salary}}</view>
  7. </view>
  8. <view class="hflex acenter fwrap">
  9. <block v-for="(item,index) in pageData.requirement">
  10. <view class="box_item">{{item.name}}</view>
  11. </block>
  12. </view>
  13. </view>
  14. <view class="box">
  15. <view class="hflex acenter">
  16. <image :src="pageData.user.headimg" class="headimg"></image>
  17. <view class="text1">{{pageData.user.name}}</view>
  18. </view>
  19. <view class="hflex acenter padT-26">
  20. <u-icon name="phone-fill" color="#666666" size="14" class="padR-24"></u-icon>
  21. <view class="text_style1">{{pageData.user.phone}}</view>
  22. </view>
  23. <view class="hflex acenter padT-26">
  24. <image src="/static/images/index/demand/email.png" class="icon"></image>
  25. <view class="text_style1">{{pageData.user.email}}<span style="color: #506dff;" @click="copy(pageData.user.email)"><span style="padding: 0 5rpx;">|</span>复制</span></view>
  26. </view>
  27. </view>
  28. <view class="box">
  29. <view class="box_title">职位描述</view>
  30. <view class="desc">
  31. <view class="hflex pad_tb10">
  32. <view class="label">地区范围</view>
  33. <view class="text_style1">{{pageData.desc.area}}</view>
  34. </view>
  35. <view class="hflex acenter pad_tb10">
  36. <view class="label">用工时间</view>
  37. <view class="text_style1">{{pageData.desc.time}}</view>
  38. </view>
  39. <view class="hflex acenter pad_tb10">
  40. <view class="label">用工性质</view>
  41. <view class="text_style1">{{pageData.desc.type}}</view>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="box">
  46. <view class="box_title">必备技能</view>
  47. <view class="">
  48. <block v-for="(item,index) in pageData.skill" :key="index">
  49. <view class="text2">{{index+1}}.{{item.name}}</view>
  50. </block>
  51. </view>
  52. <view class="box_title" style="padding-top: 20rpx;">证书</view>
  53. <view class="hflex acenter">
  54. <block v-for="(item,index) in pageData.book" :key="index">
  55. <view class="text2">{{item.name}}</view>
  56. </block>
  57. </view>
  58. </view>
  59. <view class="box">
  60. <view class="box_title">福利待遇</view>
  61. <view class="text2">{{pageData.welfare}}</view>
  62. </view>
  63. <view class="box" style="margin-bottom: 186rpx;">
  64. <view class="box_title">备注</view>
  65. <view class="text2">{{pageData.remarks}}</view>
  66. </view>
  67. <view class="bottom hflex acenter jbetween">
  68. <view class="vflex acenter" @click="collect">
  69. <u-icon name="star" color="#444444" size="20" v-if="pageData.is_collect == 0"></u-icon>
  70. <u-icon name="star-fill" color="#506DFF" size="20" v-else></u-icon>
  71. <view class="text_style1">收藏</view>
  72. </view>
  73. <view class="vflex acenter" @click="share">
  74. <image src="/static/images/comment/share.png" mode="" class="bottom_img"></image>
  75. <view class="text_style1">分享</view>
  76. </view>
  77. <view class="left_btn hflex acenter jcenter">
  78. <u-icon name="heart" color="#506DFF" size="20"></u-icon>
  79. <view class="btn_text">感兴趣</view>
  80. </view>
  81. <view class="right_btn hflex acenter jcenter">
  82. <image src="/static/images/comment/chat.png" class="btn_icon"></image>
  83. <view class="btn_text2">立即沟通</view>
  84. </view>
  85. </view>
  86. </view>
  87. </template>
  88. <script>
  89. import $api from '@/static/js/api.js'
  90. var that = ''
  91. export default {
  92. data() {
  93. return {
  94. pageData: {
  95. title: '船舶设计师',
  96. salary: '13-15K',
  97. requirement: [
  98. {
  99. name: '招5人'
  100. },
  101. {
  102. name: '经验不限'
  103. },
  104. {
  105. name: '学历不限'
  106. },
  107. {
  108. name: '30岁以下'
  109. },
  110. {
  111. name: '男性'
  112. },
  113. ],
  114. user: {
  115. name: '*嘉琪',
  116. sex: '女',
  117. edu: '本科',
  118. age: '27岁',
  119. year: '5年',
  120. phone: '18923465789',
  121. email: '18923465789@163.com',
  122. headimg: '/static/images/mine/avatar2.jpg'
  123. },
  124. desc: {
  125. area: '江苏省南京市浦口区江北街道东方万汇城22号楼一单元2021',
  126. time: '两个月',
  127. type: '全职',
  128. },
  129. skill: [
  130. {
  131. name: '负责船体专业送审图纸的检查和监督、施工图纸检查和监 督、施工图纸及订货下发时间的筹划和监督;'
  132. },
  133. {
  134. name: '坞修船船体相关技术工作的协调与解决;'
  135. },
  136. {
  137. name: '负责依据项目履约计划制定设计计划,并完成生产设计及 出图;'
  138. }
  139. ],
  140. book: [
  141. {
  142. name: '船舶工程二级证书'
  143. },
  144. {
  145. name: '建模证书'
  146. }
  147. ],
  148. welfare: '免费员工餐、免费培训、住房补贴、五险一金',
  149. remarks: '免费员工餐、免费培训、住房补贴、五险一金',
  150. is_collect: 0,
  151. }
  152. }
  153. },
  154. onLoad() {
  155. that = this
  156. },
  157. methods: {
  158. // 复制
  159. copy(value) {
  160. uni.setClipboardData({
  161. data: value,
  162. success: function () {
  163. $api.info('复制成功')
  164. }
  165. });
  166. },
  167. },
  168. }
  169. </script>
  170. <style lang="scss" scoped>
  171. .content {
  172. .box {
  173. width: 690rpx;
  174. margin: 0 30rpx;
  175. box-sizing: border-box;
  176. padding: 20rpx 0;
  177. border-bottom: 1rpx solid #F4F4F4;
  178. .top {
  179. font-size: 40rpx;
  180. font-weight: 500;
  181. color: #222222;
  182. line-height: 56rpx;
  183. padding: 24rpx 0 20rpx;
  184. }
  185. .text_blue {
  186. font-size: 32rpx;
  187. font-weight: 400;
  188. color: #506DFF;
  189. line-height: 40rpx;
  190. }
  191. .box_item {
  192. width: auto;
  193. height: 40rpx;
  194. background: #F0F2F6;
  195. border-radius: 4rpx;
  196. margin: 0 20rpx 20rpx 0;
  197. padding: 0 16rpx;
  198. font-size: 22rpx;
  199. font-weight: 400;
  200. color: #444444;
  201. line-height: 40rpx;
  202. }
  203. .headimg {
  204. width: 72rpx;
  205. height: 72rpx;
  206. border-radius: 50%;
  207. margin-right: 20rpx;
  208. }
  209. .text1 {
  210. font-size: 30rpx;
  211. font-weight: 500;
  212. color: #222222;
  213. line-height: 42rpx;
  214. }
  215. .padT-26 {
  216. padding-top: 26rpx;
  217. }
  218. .padR-24 {
  219. padding-right: 24rpx;
  220. }
  221. .label {
  222. width: 20%;
  223. font-size: 24rpx;
  224. font-weight: 400;
  225. color: #444444;
  226. }
  227. .icon {
  228. width: 28rpx;
  229. height: 28rpx;
  230. }
  231. .text_style1 {
  232. width: 80%;
  233. font-size: 24rpx;
  234. padding-left: 5rpx;
  235. font-weight: 400;
  236. color: #666666;
  237. }
  238. .box_title {
  239. font-size: 32rpx;
  240. font-weight: 500;
  241. color: #222222;
  242. }
  243. .desc {
  244. margin: 16rpx 0 0;
  245. background: #F7F7F7;
  246. border-radius: 8px;
  247. box-sizing: border-box;
  248. padding: 24rpx 20rpx;
  249. .pad_tb10 {
  250. padding: 10rpx 0;
  251. }
  252. }
  253. .text2 {
  254. font-size: 24rpx;
  255. font-weight: 400;
  256. color: #333333;
  257. line-height: 34rpx;
  258. padding: 16rpx 0 0;
  259. }
  260. }
  261. .bottom {
  262. width: 100%;
  263. z-index: 9;
  264. position: fixed;
  265. bottom: 0;
  266. height: 166rpx;
  267. background: #FFFFFF;
  268. box-sizing: border-box;
  269. box-shadow: 0px -1px 0px 0px #F4F4F4;
  270. padding: 8rpx 30rpx 74rpx;
  271. .text_style1 {
  272. font-size: 20rpx;
  273. font-weight: 400;
  274. color: #444444;
  275. }
  276. .left_btn {
  277. width: 230rpx;
  278. height: 80rpx;
  279. background: #F1F6FF;
  280. border-radius: 42rpx;
  281. }
  282. .btn_text {
  283. font-size: 32rpx;
  284. font-weight: 500;
  285. color: #506DFF;
  286. line-height: 44rpx;
  287. padding-left: 10rpx;
  288. }
  289. .right_btn {
  290. width: 270rpx;
  291. height: 80rpx;
  292. background: #506DFF;
  293. border-radius: 42rpx;
  294. margin-left: 20rpx;
  295. .btn_icon {
  296. width: 40rpx;
  297. height: 40rpx;
  298. }
  299. .btn_text2 {
  300. font-size: 32rpx;
  301. font-weight: 500;
  302. color: #FFFFFF;
  303. line-height: 44rpx;
  304. padding-left: 10rpx;
  305. }
  306. }
  307. .bottom_img {
  308. width: 40rpx;
  309. height: 40rpx;
  310. }
  311. }
  312. }
  313. </style>