jobDetails.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <template>
  2. <view>
  3. <u-navbar back-text="摄影助理 - 200元/天" back-icon-size="28" back-icon-color="#ffffff"
  4. :background="{backgroundColor: '#2795FD',}" :back-text-style="{color: '#ffffff'}"></u-navbar>
  5. <view class="content">
  6. <view class="title">
  7. 摄影助理
  8. </view>
  9. <view class="saraly">
  10. 200<text>元/天</text>
  11. </view>
  12. <view class="address">
  13. 江津东路151号锦佳宴
  14. </view>
  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. <!-- 岗位详情 -->
  25. <view class="content">
  26. <view class="headline">
  27. 招工要求
  28. </view>
  29. <view class="group">
  30. <view class="item">
  31. <view class="item-title">
  32. 招聘人数:
  33. </view>
  34. <view class="item-value">
  35. 4人
  36. </view>
  37. </view>
  38. <view class="item">
  39. <view class="item-title">
  40. 结算方式:
  41. </view>
  42. <view class="item-value">
  43. 日结
  44. </view>
  45. </view>
  46. <view class="item">
  47. <view class="item-title">
  48. 招聘类型:
  49. </view>
  50. <view class="item-value">
  51. 个人
  52. </view>
  53. </view>
  54. </view>
  55. <view class="headline">
  56. 工作详情
  57. </view>
  58. <view class="group">
  59. <view class="item">
  60. <view class="item-title">
  61. 工作内容:
  62. </view>
  63. <view class="item-value">
  64. 有一定摄影基础,负责协助主拍摄影师做好场景道具、助拍等辅助工作,白班制偶尔加班,周休1天,包工作餐,详情面谈。
  65. </view>
  66. </view>
  67. </view>
  68. <view class="headline">
  69. 联系方式
  70. </view>
  71. <view class="group">
  72. <view class="item">
  73. <view class="item-title">
  74. 联系人:
  75. </view>
  76. <view class="item-value">
  77. 李先生
  78. </view>
  79. </view>
  80. <view class="item">
  81. <view class="item-title">
  82. 手机号:
  83. </view>
  84. <view class="item-value">
  85. 155****1111
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. <!-- 底部按钮 -->
  91. <view class="bottom">
  92. <!-- 分享 -->
  93. <view class="share">
  94. <view class="icon">
  95. <img src="@/assets/img/riFill-share-circle-fill@1x.png" alt="">
  96. </view>
  97. <view class="text">
  98. 分享
  99. </view>
  100. </view>
  101. <view class="btn">
  102. <button class="dialing">拨打电话</button>
  103. <button class="invite">我要报名</button>
  104. </view>
  105. </view>
  106. </view>
  107. </template>
  108. <script>
  109. export default {
  110. data() {
  111. return {
  112. }
  113. },
  114. methods: {
  115. }
  116. }
  117. </script>
  118. <style>
  119. page {
  120. background: #F0F0F2;
  121. padding-bottom: 150px;
  122. }
  123. </style>
  124. <style lang="scss" scoped>
  125. // 岗位详情
  126. .content{
  127. padding: 32rpx;
  128. background-color: #fff;
  129. margin-bottom: 24rpx;
  130. .title{
  131. color: rgba(16, 16, 16, 1);
  132. font-size: 48rpx;
  133. font-family: 'PingFangSC-medium';
  134. }
  135. .saraly{
  136. color: rgba(255, 61, 0, 1);
  137. font-size: 24px;
  138. margin-top: 16rpx;
  139. font-weight: bold;
  140. text{
  141. font-size: 28rpx
  142. }
  143. }
  144. .address{
  145. color: rgba(16, 16, 16, 1);
  146. margin-top: 40rpx;
  147. }
  148. .date-views{
  149. margin-top: 24rpx;
  150. display: flex;
  151. justify-content: space-between;
  152. .date{
  153. color: rgba(119, 119, 119, 1);
  154. font-size: 24rpx;
  155. }
  156. .views{
  157. color: rgba(119, 119, 119, 1);
  158. font-size: 24rpx;
  159. }
  160. }
  161. .headline{
  162. color: rgba(16, 16, 16, 1);
  163. font-size: 36rpx;
  164. }
  165. .group{
  166. margin-top: 24rpx;
  167. margin-bottom: 64rpx;
  168. .item{
  169. line-height: 40rpx;
  170. display: flex;
  171. margin-bottom: 8rpx;
  172. .item-title{
  173. color: rgba(119, 119, 119, 1);
  174. line-height: 40rpx;
  175. width: 140rpx;
  176. }
  177. .item-value{
  178. flex: 1;
  179. margin-left: 8rpx;
  180. color: #101010;
  181. }
  182. }
  183. }
  184. }
  185. // 底部按钮
  186. .bottom{
  187. background-color: #fff;
  188. padding: 24rpx 44rpx;
  189. display: flex;
  190. align-items: center;
  191. position: fixed;
  192. bottom: 0;
  193. left: 0;
  194. right: 0;
  195. // 分享
  196. .icon{
  197. width: 48rpx;
  198. height: 48rpx;
  199. img{
  200. width: 100%;
  201. height: 100%;
  202. }
  203. }
  204. .text{
  205. color: rgba(39, 149, 253, 1);
  206. font-size:24rpx;
  207. }
  208. .btn{
  209. display: flex;
  210. margin-left: auto;
  211. .dialing{
  212. width: 240rpx;
  213. height: 88rpx;
  214. line-height: 88rpx;
  215. border-radius: 50px;
  216. background-color: #fff;
  217. color: rgba(39, 149, 253, 1);
  218. font-size: 36rpx;
  219. text-align: center;
  220. border: 1px solid rgba(39, 149, 253, 1);
  221. margin-right: 24rpx;
  222. }
  223. .invite{
  224. width: 280rpx;
  225. height: 88rpx;
  226. line-height: 88rpx;
  227. border-radius: 50px;
  228. background-color: rgba(34, 149, 255, 1);
  229. color: rgba(255, 255, 255, 1);
  230. font-size: 36rpx;
  231. text-align: center;
  232. }
  233. }
  234. }
  235. </style>