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

249 lines
4.8 KiB

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 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="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. this.$api('bossQueryResumeById', {
  127. resumeId : this.id
  128. }, res => {
  129. if(res.code == 200){
  130. this.detail = res.result
  131. }
  132. })
  133. },
  134. }
  135. }
  136. </script>
  137. <style scoped lang="scss">
  138. .page{
  139. background-color: #fff;
  140. min-height: 100vh;
  141. .head {
  142. display: flex;
  143. align-items: center;
  144. position: relative;
  145. padding: 20rpx;
  146. image {
  147. width: 140rpx;
  148. height: 140rpx;
  149. border-radius: 50%;
  150. }
  151. .headImage {
  152. width: 160rpx;
  153. margin-right: 40rpx;
  154. display: flex;
  155. flex-direction: column;
  156. align-items: center;
  157. justify-content: center;
  158. view {
  159. display: flex;
  160. font-size: 24rpx;
  161. align-items: center;
  162. margin-left: 20rpx;
  163. background: rgba($uni-color, 0.2);
  164. color: $uni-color;
  165. padding: 10rpx;
  166. border-radius: 10rpx;
  167. margin-top: 10rpx;
  168. }
  169. }
  170. .info {
  171. font-size: 28rpx;
  172. .name {
  173. font-size: 32rpx;
  174. display: flex;
  175. padding-bottom: 10rpx;
  176. view {
  177. display: flex;
  178. font-size: 20rpx;
  179. align-items: center;
  180. padding-left: 20rpx;
  181. }
  182. }
  183. .tips {
  184. font-size: 26rpx;
  185. }
  186. }
  187. .right{
  188. margin-left: auto;
  189. .phone{
  190. background-color: rgba($uni-color, 0.2);
  191. color: $uni-color;
  192. padding: 8rpx 16rpx;
  193. border-radius: 10rpx;
  194. image{
  195. width: 24rpx;
  196. height: 24rpx;
  197. }
  198. }
  199. }
  200. }
  201. .box{
  202. padding: 30rpx;
  203. .userinfo{
  204. font-size: 28rpx;
  205. color: #666666;
  206. line-height: 44rpx;
  207. margin-bottom: 40rpx;
  208. .line{
  209. margin-bottom: 20rpx;
  210. display: flex;
  211. .left{
  212. width: 220rpx;
  213. flex-shrink: 0;
  214. }
  215. }
  216. }
  217. .info{
  218. .text{
  219. font-size: 24rpx;
  220. color: #666666;
  221. line-height: 44rpx;
  222. }
  223. }
  224. }
  225. }
  226. </style>