特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

221 lines
4.3 KiB

7 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="工作详情" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="head">
  5. <view class="headImage">
  6. <image :src="detail.headImage" mode=""></image>
  7. <view class="">
  8. {{ detail.typeId_dictText }}
  9. </view>
  10. </view>
  11. <view class="info">
  12. <view class="name">
  13. {{ detail.name }}
  14. </view>
  15. <view class="tips">
  16. 性别{{ detail.sex }}
  17. </view>
  18. <view class="tips">
  19. 年龄{{ detail.age }}
  20. </view>
  21. <view class="tips">
  22. 学历{{ detail.qualification }}
  23. </view>
  24. </view>
  25. <view class="right">
  26. <view class="phone">
  27. <image src="/static/image/home/phone.png" mode=""></image>
  28. 联系他
  29. </view>
  30. </view>
  31. </view>
  32. <view class="box">
  33. <view class="userinfo">
  34. <view class="line">
  35. <view class="left">
  36. 联系电话
  37. </view>
  38. <view class="right">
  39. 联系电话
  40. </view>
  41. </view>
  42. <view class="line">
  43. <view class="left">
  44. 期望工作地
  45. </view>
  46. <view class="right">
  47. 联系电话
  48. </view>
  49. </view>
  50. </view>
  51. <view class="info">
  52. <view class="title2">
  53. <text>个人介绍</text>
  54. </view>
  55. <!-- <view
  56. class="text"
  57. v-html="text">
  58. </view> -->
  59. <view
  60. class="text">
  61. <uv-parse :content="detail.brief"></uv-parse>
  62. </view>
  63. <view class="tag-list">
  64. <view v-for="(t, i) in detail.tab && detail.tab.split('、')">
  65. {{ t }}
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. </view>
  71. </template>
  72. <script>
  73. let text = `岗位要求
  74. 1全日制大专以上学历艺术设计类相关专业;
  75. 2两年以上平面品牌视觉设计等相关工作经验能独立完成项目的设计工作 3C数码/个护健 类产品服务经验优先有乙方工作经验佳;
  76. 3具备一定的设计提案能力能完整的呈现设计思路与创意能清晰的表达设计逻辑与思考;
  77. 4热爱设计平面基本功扎实拥有优良的审美与创意想法对版式色彩把控能力强;对工作富有责任心具备团队沟通与协作能力;
  78. 5精通 PSAICDR 等平面设计软件能独立完成日常平面设计工作内容熟练使用 PPT/Keynote能完成提案内容的材料美化工作
  79. `
  80. import userHead from '../components/user/userHead.vue'
  81. export default {
  82. components : {
  83. userHead,
  84. },
  85. data() {
  86. return {
  87. text : '',
  88. id : 0,
  89. detail : {},
  90. }
  91. },
  92. onLoad({id}) {
  93. this.id = id
  94. },
  95. onShow() {
  96. this.text = this.$utils.stringFormatHtml(text)
  97. this.getData()
  98. },
  99. methods: {
  100. getData(){
  101. this.$api('bossQueryResumeById', {
  102. resumeId : this.id
  103. }, res => {
  104. if(res.code == 200){
  105. this.detail = res.result
  106. }
  107. })
  108. },
  109. }
  110. }
  111. </script>
  112. <style scoped lang="scss">
  113. .page{
  114. background-color: #fff;
  115. min-height: 100vh;
  116. .head {
  117. display: flex;
  118. align-items: center;
  119. position: relative;
  120. padding: 20rpx;
  121. image {
  122. width: 140rpx;
  123. height: 140rpx;
  124. border-radius: 50%;
  125. }
  126. .headImage {
  127. width: 160rpx;
  128. margin-right: 40rpx;
  129. display: flex;
  130. flex-direction: column;
  131. align-items: center;
  132. justify-content: center;
  133. view {
  134. display: flex;
  135. font-size: 24rpx;
  136. align-items: center;
  137. margin-left: 20rpx;
  138. background: rgba($uni-color, 0.2);
  139. color: $uni-color;
  140. padding: 10rpx;
  141. border-radius: 10rpx;
  142. margin-top: 10rpx;
  143. }
  144. }
  145. .info {
  146. font-size: 28rpx;
  147. .name {
  148. font-size: 32rpx;
  149. display: flex;
  150. padding-bottom: 10rpx;
  151. view {
  152. display: flex;
  153. font-size: 20rpx;
  154. align-items: center;
  155. padding-left: 20rpx;
  156. }
  157. }
  158. .tips {
  159. font-size: 26rpx;
  160. }
  161. }
  162. .right{
  163. margin-left: auto;
  164. .phone{
  165. background-color: rgba($uni-color, 0.2);
  166. color: $uni-color;
  167. padding: 8rpx 16rpx;
  168. border-radius: 10rpx;
  169. image{
  170. width: 24rpx;
  171. height: 24rpx;
  172. }
  173. }
  174. }
  175. }
  176. .box{
  177. padding: 30rpx;
  178. .userinfo{
  179. font-size: 28rpx;
  180. color: #666666;
  181. line-height: 44rpx;
  182. margin-bottom: 40rpx;
  183. .line{
  184. margin-bottom: 20rpx;
  185. display: flex;
  186. .left{
  187. width: 220rpx;
  188. flex-shrink: 0;
  189. }
  190. }
  191. }
  192. .info{
  193. .text{
  194. font-size: 24rpx;
  195. color: #666666;
  196. line-height: 44rpx;
  197. }
  198. }
  199. }
  200. }
  201. </style>