特易招,招聘小程序
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.

261 lines
5.2 KiB

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