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

255 lines
5.0 KiB

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