zhiwei-detail.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <template>
  2. <view class="content">
  3. <view class="navbar">
  4. <u-navbar title=" " :autoBack="true" :placeholder="true">
  5. <!-- <view slot="right" class="u-nav-right hflex acenter">
  6. <image src="static/share.png" mode="aspectFill"></image>
  7. <image src="static/sandian.png" mode="aspectFill"></image>
  8. </view> -->
  9. </u-navbar>
  10. </view>
  11. <view class="detail">
  12. <view class="name hflex acenter jbetween">
  13. <text class="text_hide">{{detail.title}}</text>
  14. <text>{{detail.salary_min}}-{{detail.salary_max}}K·{{detail.salary_month}}薪</text>
  15. </view>
  16. <view class="city hflex acenter">
  17. <text v-if="detail.city">{{detail.city}} | </text>
  18. <text v-if="detail.experience_min">{{detail.experience_min}}-{{detail.experience_max}}年 | </text>
  19. <text v-if="detail.education">{{detail.education}}</text>
  20. </view>
  21. <view class="user hflex acenter">
  22. <image :src="detail.avatar" mode="aspectFill"></image>
  23. <view class="vflex user-right jbetween">
  24. <text>{{detail.name}}</text>
  25. <text>{{detail.mobile}}</text>
  26. </view>
  27. </view>
  28. <view class="box">
  29. <view class="title">职位详情</view>
  30. <u-parse :content="detail.detail"></u-parse>
  31. </view>
  32. <view class="box">
  33. <view class="title">职位福利</view>
  34. <view class="hflex acenter fwrap box-list">
  35. <text v-for="(item,index) in detail.tags" :key="index">{{item.name}}</text>
  36. </view>
  37. </view>
  38. <view class="box">
  39. <view class="title">公司信息</view>
  40. <u-parse :content="detail.company_info"></u-parse>
  41. </view>
  42. </view>
  43. <view class="bottom">
  44. <view class="btn" @click="totoudi">投递简历</view>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. import $api from '@/static/js/api.js'
  50. export default {
  51. data() {
  52. return{
  53. id: '',
  54. detail: {},
  55. }
  56. },
  57. onLoad(option) {
  58. this.id = option.id
  59. this.getdata()
  60. },
  61. methods: {
  62. totoudi() {
  63. uni.navigateTo({
  64. url: '/pageC/jianli'
  65. })
  66. },
  67. getdata() {
  68. var _this = this
  69. $api.req({
  70. url: 'job/'+ this.id,
  71. method: 'GET',
  72. }, function(res) {
  73. if(res.code == 10000) {
  74. _this.detail = res.data
  75. }
  76. })
  77. }
  78. }
  79. }
  80. </script>
  81. <style lang="scss">
  82. .content {
  83. background: #FFFFFF;
  84. .detail {
  85. margin: 0 0 166rpx;
  86. padding: 32rpx 28rpx 166rpx;
  87. .name {
  88. text:first-child {
  89. font-size: 44rpx;
  90. font-family: PingFangSC, PingFang SC;
  91. font-weight: 500;
  92. color: #222222;
  93. }
  94. text:last-child {
  95. font-size: 32rpx;
  96. font-family: JDZhengHT, JDZhengHT;
  97. font-weight: 400;
  98. color: #00B0B0;
  99. }
  100. }
  101. .city {
  102. padding: 20rpx 0 40rpx;
  103. text {
  104. font-size: 24rpx;
  105. font-family: PingFangSC, PingFang SC;
  106. font-weight: 400;
  107. color: #666666;
  108. padding: 0 16rpx 0 0;
  109. }
  110. }
  111. .user {
  112. padding-bottom: 32rpx;
  113. border-bottom: 1px solid #FAFAFA;
  114. image {
  115. width: 80rpx;
  116. height: 80rpx;
  117. margin: 0 20rpx 0 0;
  118. border-radius: 50%;
  119. }
  120. .user-right {
  121. height: 80rpx;
  122. text:first-child {
  123. font-size: 24rpx;
  124. font-family: PingFangSC, PingFang SC;
  125. font-weight: 500;
  126. color: #222222;
  127. }
  128. text:last-child {
  129. font-size: 24rpx;
  130. font-family: SFPro, SFPro;
  131. font-weight: 400;
  132. color: rgba(51, 51, 51, .6);
  133. }
  134. }
  135. }
  136. .box {
  137. padding: 28rpx 0;
  138. border-bottom: 1px solid #FAFAFA;
  139. .title {
  140. font-size: 32rpx;
  141. font-family: PingFangSC, PingFang SC;
  142. font-weight: 600;
  143. color: #222222;
  144. padding: 0 0 20rpx;
  145. }
  146. .text {
  147. font-size: 28rpx;
  148. font-family: PingFangSC, PingFang SC;
  149. font-weight: 400;
  150. color: #222222;
  151. }
  152. .box-list {
  153. text {
  154. background: #F2F2F2;
  155. border-radius: 4rpx;
  156. font-size: 24rpx;
  157. font-family: PingFangSC, PingFang SC;
  158. font-weight: 400;
  159. color: #555555;
  160. padding: 6rpx 14rpx;
  161. margin: 0 20rpx 18rpx 0;
  162. }
  163. }
  164. }
  165. }
  166. .bottom {
  167. width: 750rpx;
  168. box-sizing: border-box;
  169. height: 166rpx;
  170. background: #FFFFFF;
  171. position: fixed;
  172. bottom: 0;
  173. left: 0;
  174. padding: 12rpx 34rpx 70rpx;
  175. border-top: 1px solid #f5f5f5;
  176. .btn {
  177. width: 682rpx;
  178. height: 84rpx;
  179. background: #00B0B0;
  180. border-radius: 42rpx;
  181. font-size: 32rpx;
  182. font-family: PingFangSC, PingFang SC;
  183. font-weight: 500;
  184. color: #FFFFFF;
  185. line-height: 84rpx;
  186. text-align: center;
  187. }
  188. }
  189. .navbar {
  190. .u-nav-right {
  191. image {
  192. width: 48rpx;
  193. height: 48rpx;
  194. margin: 0 0 0 20rpx;
  195. }
  196. }
  197. }
  198. }
  199. </style>