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

253 lines
5.0 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. <template>
  2. <view class="page">
  3. <navbar 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 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. {{ detail.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 v-for="(t, i) in detail.tag && detail.tag.split('、')">
  90. {{ t }}
  91. </view>
  92. </view>
  93. </view>
  94. </view>
  95. </view>
  96. </template>
  97. <script>
  98. let text = `岗位要求
  99. 1全日制大专以上学历艺术设计类相关专业;
  100. 2两年以上平面品牌视觉设计等相关工作经验能独立完成项目的设计工作 3C数码/个护健 类产品服务经验优先有乙方工作经验佳;
  101. 3具备一定的设计提案能力能完整的呈现设计思路与创意能清晰的表达设计逻辑与思考;
  102. 4热爱设计平面基本功扎实拥有优良的审美与创意想法对版式色彩把控能力强;对工作富有责任心具备团队沟通与协作能力;
  103. 5精通 PSAICDR 等平面设计软件能独立完成日常平面设计工作内容熟练使用 PPT/Keynote能完成提案内容的材料美化工作
  104. `
  105. import userHead from '../components/user/userHead.vue'
  106. export default {
  107. components : {
  108. userHead,
  109. },
  110. data() {
  111. return {
  112. text : '',
  113. id : 0,
  114. detail : {},
  115. }
  116. },
  117. onLoad({id}) {
  118. this.id = id
  119. },
  120. onShow() {
  121. this.text = this.$utils.stringFormatHtml(text)
  122. this.getData()
  123. },
  124. methods: {
  125. getData(){
  126. let data = {
  127. resumeId : this.id
  128. }
  129. if(uni.getStorageSync('token')){
  130. data.token = uni.getStorageSync('token')
  131. }
  132. this.$api('bossQueryResumeById', data, res => {
  133. if(res.code == 200){
  134. this.detail = res.result
  135. }
  136. })
  137. },
  138. }
  139. }
  140. </script>
  141. <style scoped lang="scss">
  142. .page{
  143. background-color: #fff;
  144. min-height: 100vh;
  145. .head {
  146. display: flex;
  147. align-items: center;
  148. position: relative;
  149. padding: 20rpx;
  150. image {
  151. width: 140rpx;
  152. height: 140rpx;
  153. border-radius: 50%;
  154. }
  155. .headImage {
  156. width: 160rpx;
  157. margin-right: 40rpx;
  158. display: flex;
  159. flex-direction: column;
  160. align-items: center;
  161. justify-content: center;
  162. view {
  163. display: flex;
  164. font-size: 24rpx;
  165. align-items: center;
  166. margin-left: 20rpx;
  167. background: rgba($uni-color, 0.2);
  168. color: $uni-color;
  169. padding: 10rpx;
  170. border-radius: 10rpx;
  171. margin-top: 10rpx;
  172. }
  173. }
  174. .info {
  175. font-size: 28rpx;
  176. .name {
  177. font-size: 32rpx;
  178. display: flex;
  179. padding-bottom: 10rpx;
  180. view {
  181. display: flex;
  182. font-size: 20rpx;
  183. align-items: center;
  184. padding-left: 20rpx;
  185. }
  186. }
  187. .tips {
  188. font-size: 26rpx;
  189. }
  190. }
  191. .right{
  192. margin-left: auto;
  193. .phone{
  194. background-color: rgba($uni-color, 0.2);
  195. color: $uni-color;
  196. padding: 8rpx 16rpx;
  197. border-radius: 10rpx;
  198. image{
  199. width: 24rpx;
  200. height: 24rpx;
  201. }
  202. }
  203. }
  204. }
  205. .box{
  206. padding: 30rpx;
  207. .userinfo{
  208. font-size: 28rpx;
  209. color: #666666;
  210. line-height: 44rpx;
  211. margin-bottom: 40rpx;
  212. .line{
  213. margin-bottom: 20rpx;
  214. display: flex;
  215. .left{
  216. width: 220rpx;
  217. flex-shrink: 0;
  218. }
  219. }
  220. }
  221. .info{
  222. .text{
  223. font-size: 24rpx;
  224. color: #666666;
  225. line-height: 44rpx;
  226. }
  227. }
  228. }
  229. }
  230. </style>