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

257 lines
5.1 KiB

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