jobSearchDetails.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. <template>
  2. <view>
  3. <u-navbar back-text="求职详情" back-icon-size="28" back-icon-color="#ffffff"
  4. :background="{backgroundColor: '#2795FD',}" :back-text-style="{color: '#ffffff'}"></u-navbar>
  5. <view class="content">
  6. <!-- 职位 -->
  7. <view class="position">
  8. 司机/保安/普工/地推
  9. </view>
  10. <!-- 薪水 -->
  11. <view class="saraly">
  12. 200<text>元/天</text>
  13. </view>
  14. <!-- 发布日期和浏览量 -->
  15. <view class="date-views">
  16. <view class="date">
  17. 更新时间:2023-06-01
  18. </view>
  19. <view class="views">
  20. 浏览量:1
  21. </view>
  22. </view>
  23. </view>
  24. <view class="content">
  25. <view class="job-information">
  26. 求职信息
  27. </view>
  28. <!-- 意向岗位 -->
  29. <view class="intention">
  30. <view class="title">
  31. 意向岗位:
  32. </view>
  33. <view class="details">
  34. 会的很多,都可以做
  35. </view>
  36. </view>
  37. <!-- 服务描述 -->
  38. <view class="describe">
  39. 服务描述
  40. </view>
  41. <view class="describe-details">
  42. 有相关2年工作经验,吃苦耐劳,工作认真仔细。
  43. </view>
  44. </view>
  45. <view class="content">
  46. <!-- 联系方式 -->
  47. <view class="contact-information">
  48. <view class="title">
  49. 联系方式
  50. </view>
  51. <view class="details">
  52. <!-- 照片 -->
  53. <view class="photo">
  54. <img src="@/assets/img/informationPhoto.png" alt="">
  55. </view>
  56. <view class="linkman-infos">
  57. <!-- 姓名电话 -->
  58. <view class="name-tel">
  59. <view class="name">
  60. 李先生
  61. </view>
  62. <view class="tel">
  63. 155****1111
  64. </view>
  65. </view>
  66. <!-- 标签 -->
  67. <view class="tags">
  68. <view class="tag-item">
  69. </view>
  70. <view class="tag-item">
  71. 21岁
  72. </view>
  73. <view class="tag-item">
  74. 2年以上
  75. </view>
  76. <view class="tag-item">
  77. 高中
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. </view>
  83. </view>
  84. <!-- 底部按钮 -->
  85. <view class="bottom">
  86. <!-- 分享 -->
  87. <view class="share">
  88. <view class="icon">
  89. <img src="@/assets/img/riFill-share-circle-fill@1x.png" alt="">
  90. </view>
  91. <view class="text">
  92. 分享
  93. </view>
  94. </view>
  95. <view class="btn">
  96. <button class="dialing">一键拨号</button>
  97. <button class="invite">立即邀请</button>
  98. </view>
  99. </view>
  100. </view>
  101. </template>
  102. <script>
  103. export default {
  104. data() {
  105. return {
  106. }
  107. },
  108. methods: {
  109. }
  110. }
  111. </script>
  112. <style>
  113. page {
  114. background: #F0F0F2;
  115. padding-bottom: 50px;
  116. }
  117. </style>
  118. <style lang="scss" scoped>
  119. .content{
  120. padding: 32rpx;
  121. background-color: #fff;
  122. margin-bottom: 24rpx;
  123. // 职位
  124. .position{
  125. color: rgba(16, 16, 16, 1);
  126. font-size: 24px;
  127. font-family: 'PingFangSC-medium';
  128. }
  129. // 薪水
  130. .saraly{
  131. margin-top: 16rpx;
  132. color: rgba(255, 61, 0, 1);
  133. font-size: 48rpx;
  134. text{
  135. font-size: 14px;
  136. margin-left: 4rpx;
  137. }
  138. }
  139. // 发布日期和浏览量
  140. .date-views{
  141. display: flex;
  142. justify-content: space-between;
  143. align-items: center;
  144. margin-top: 40rpx;
  145. .date{
  146. color: rgba(119, 119, 119, 1);
  147. font-size: 24rpx;
  148. }
  149. .views{
  150. color: rgba(119, 119, 119, 1);
  151. font-size: 24rpx;
  152. }
  153. }
  154. // 求职信息
  155. .job-information{
  156. color: rgba(16, 16, 16, 1);
  157. font-size: 18px;
  158. font-family: 'PingFangSC-medium';
  159. }
  160. // 意向岗位
  161. .intention{
  162. display: flex;
  163. align-items: center;
  164. margin-top: 24rpx;
  165. .title{
  166. color: rgba(119, 119, 119, 1);
  167. }
  168. .datails{
  169. color: rgba(16, 16, 16, 1);
  170. }
  171. }
  172. // 服务描述
  173. .describe{
  174. font-size: 36rpx;
  175. text-align: left;
  176. font-family: 'PingFangSC-medium';
  177. margin-top: 64rpx;
  178. color: rgba(16, 16, 16, 1);
  179. }
  180. .describe-details{
  181. color: rgba(51, 51, 51, 1);
  182. font-size: 32rpx;
  183. margin-top: 24rpx;
  184. }
  185. // 联系方式
  186. .contact-information{
  187. .title{
  188. color: rgba(16, 16, 16, 1);
  189. font-size: 36rpx;
  190. }
  191. .details{
  192. display: flex;
  193. margin-top: 24rpx;
  194. .photo{
  195. width: 112rpx;
  196. height: 112rpx;
  197. border-radius: 50rpx;
  198. border: 1px solid rgba(255, 255, 255, 1);
  199. overflow: hidden;
  200. img{
  201. width: 100%;
  202. height: 100%;
  203. }
  204. }
  205. .linkman-infos{
  206. margin-left: 24rpx;
  207. // 姓名电话
  208. .name-tel{
  209. display: flex;
  210. align-items: center;
  211. .name{
  212. color: rgba(16, 16, 16, 1);
  213. font-size: 36rpx;
  214. font-family: 'PingFangSC-medium';
  215. }
  216. .tel{
  217. color: rgba(119, 119, 119, 1);
  218. font-size: 36rpx;
  219. margin-left: 16rpx;
  220. }
  221. }
  222. // 标签
  223. .tags{
  224. display: flex;
  225. margin-top: 16rpx;
  226. .tag-item{
  227. line-height: 40rpx;
  228. padding: 0 8rpx;
  229. border-radius: 4px;
  230. background-color: rgba(241, 241, 247, 1);
  231. color: rgba(129, 127, 153, 1);
  232. font-size: 24rpx;
  233. text-align: center;
  234. margin-right: 16rpx;
  235. }
  236. }
  237. }
  238. }
  239. }
  240. }
  241. // 底部按钮
  242. .bottom{
  243. background-color: #fff;
  244. padding: 24rpx 44rpx;
  245. display: flex;
  246. align-items: center;
  247. position: fixed;
  248. bottom: 0;
  249. left: 0;
  250. right: 0;
  251. // 分享
  252. .icon{
  253. width: 48rpx;
  254. height: 48rpx;
  255. img{
  256. width: 100%;
  257. height: 100%;
  258. }
  259. }
  260. .text{
  261. color: rgba(39, 149, 253, 1);
  262. font-size:24rpx;
  263. }
  264. .btn{
  265. display: flex;
  266. margin-left: auto;
  267. .dialing{
  268. width: 240rpx;
  269. height: 88rpx;
  270. line-height: 88rpx;
  271. border-radius: 50px;
  272. background-color: #fff;
  273. color: rgba(39, 149, 253, 1);
  274. font-size: 36rpx;
  275. text-align: center;
  276. border: 1px solid rgba(39, 149, 253, 1);
  277. margin-right: 24rpx;
  278. }
  279. .invite{
  280. width: 280rpx;
  281. height: 88rpx;
  282. line-height: 88rpx;
  283. border-radius: 50px;
  284. background-color: rgba(34, 149, 255, 1);
  285. color: rgba(255, 255, 255, 1);
  286. font-size: 36rpx;
  287. text-align: center;
  288. }
  289. }
  290. }
  291. </style>