myResume.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. <!-- 我的简历 -->
  2. <template>
  3. <view class="resume">
  4. <!-- ================================ 头像部分 ================================ -->
  5. <view class="resume-head" @click="jumpPage('/pages/dynamicTracking/dynamicTracking')">
  6. <view class="resume-head-left">
  7. <view class="name">
  8. <view>{{ userInfo.nickName }}</view>
  9. <image src="../../static/img/edit-icon.png" mode=""></image>
  10. </view>
  11. <view class="info">
  12. <view>{{ userInfo.sex }} · </view>
  13. <view>
  14. <text class="position">{{ userInfo.company ? '入职中' : '未入职' }}</text>
  15. {{ `(${ userInfo.company })` }}
  16. </view>
  17. </view>
  18. </view>
  19. <view class="resume-head-right">
  20. <u-avatar :src="userInfo.avatar" mode="circle" size="128" />
  21. </view>
  22. </view>
  23. <!-- ================================ 基本信息部分 ================================ -->
  24. <view class="resume-base-info">
  25. <view class="resume-base-info-left">
  26. <view class="title">基本信息</view>
  27. <view class="resume-base-info-item">退役军人 · 36岁 · 群众 · 本科</view>
  28. <view class="resume-base-info-phone">
  29. 电话:<text class="icon-phone-icon"></text> 17004240181
  30. </view>
  31. </view>
  32. <view class="resume-base-info-right">
  33. <!-- <image src="../../static/img/edit-icon.png" mode=""></image> -->
  34. </view>
  35. </view>
  36. <!-- ================================ 求职意向部分 ================================ -->
  37. <view class="resume-job-intention">
  38. <view class="resume-job-intention-left">
  39. <view class="title">求职意向</view>
  40. <view>保安员 4K-8K</view>
  41. <view class="supple">暂末补充求意向… </view>
  42. </view>
  43. <view class="resume-job-intention-right">
  44. <image src="../../static/img/edit-icon.png" mode="" @click="jumpPage('/pages/evaluationIntention/evaluationIntention', { tabCur: 0 })"></image>
  45. </view>
  46. </view>
  47. <!-- ================================ 自我评价部分 ================================ -->
  48. <view class="resume-self-evaluation">
  49. <view class="resume-self-evaluation-left">
  50. <view class="title">自我评价</view>
  51. <view class="supple" v-if="!isExpand">暂未补充自我评价...</view>
  52. <view class="resume-self-evaluation-info" v-else>
  53. <view class="rsei-box">{{ userInfo.evaluate }}</view>
  54. </view>
  55. </view>
  56. <view class="resume-self-evaluation-right">
  57. <image src="../../static/img/edit-icon.png" mode="" @click="jumpPage('/pages/evaluationIntention/evaluationIntention', { tabCur: 1 })"></image>
  58. </view>
  59. </view>
  60. <!-- ================================ 工作经历部分 ================================ -->
  61. <view class="resume-work-experience">
  62. <view class="resume-work-experience-header">
  63. <view class="title">工作经历</view>
  64. <image src="../../static/img/add-experience-icon.png" mode="" @click="jumpPage('/pages/myResume/addExperience')"></image>
  65. </view>
  66. <view class="resume-work-experience-list" :class="isExpand ? 'height-auto' : 'height-130'">
  67. <view class="rwel-item" v-for="(item, index) in workExperice" :key="index">
  68. <view class="rwel-item-left">
  69. <view>{{ item.company }}</view>
  70. <view>{{ item.position }}</view>
  71. <view>获得企业评价:<text>{{ item.evaluate }}</text></view>
  72. </view>
  73. <view class="rwel-item-right">
  74. <view>{{ item.dateLine }}</view>
  75. <view>
  76. <u-icon name="arrow-right" color="#7B7B7B" size="20" @click="jumpPage('/pages/myResume/addExperience')"/>
  77. </view>
  78. </view>
  79. </view>
  80. </view>
  81. <view class="resume-work-experience-btn" @click="isExpand = !isExpand">
  82. {{ isExpand ? '收起' : '展开全部' }}
  83. </view>
  84. </view>
  85. <!-- ================================ 培训与教育经历部分 ================================ -->
  86. <view class="resume-train-experience">
  87. <view class="resume-train-experience-header">
  88. <view class="title">培训与教育经历</view>
  89. <image src="../../static/img/add-experience-icon.png" mode="" @click="jumpPage('/pages/myResume/addEducation')"/>
  90. </view>
  91. <view class="resume-train-experience-list" :class="isTrainExpand ? 'height-auto' : 'height-130'">
  92. <view class="rtel-item" v-for="(item, index) in trainExperice" :key="index">
  93. <view class="rtel-item-left">
  94. <view>{{ item.classes }}</view>
  95. <view>{{ item.school }}</view>
  96. <view>{{ item.content }}</view>
  97. <view>获得老师评价:<text>{{ item.evaluate }}</text></view>
  98. </view>
  99. <view class="rtel-item-right">
  100. <view>{{ item.dateLine }}</view>
  101. <view>
  102. <u-icon name="arrow-right" color="#7B7B7B" size="20" @click="jumpPage('/pages/myResume/addEducation')"/>
  103. </view>
  104. </view>
  105. </view>
  106. </view>
  107. <view class="resume-train-experience-btn" @click="isTrainExpand = !isTrainExpand">
  108. {{ isTrainExpand ? '收起' : '展开全部' }}
  109. </view>
  110. </view>
  111. </view>
  112. </template>
  113. <script>
  114. export default {
  115. data() {
  116. return {
  117. userInfo: {
  118. avatar: require('@/static/img/avatar.jpg'),
  119. nickName: '郝爱国',
  120. company: '贵州威振押运有限公司',
  121. sex: '男',
  122. evaluate: '性格开朗,工作认真负责,细心,有很强的职责心和进取心,头脑灵活,不怕吃苦,理解潜力强,能够很好的处理同事的关系,具有强烈的团队合作精神,并能承担必须的工作压力。'
  123. },
  124. // 求职意向
  125. jobIntention: true,
  126. // 自我评价
  127. selfEvaluation: true,
  128. // 工作经历
  129. workExperice: [{
  130. dateLine: '2020.3 ~ 至今',
  131. company: '贵州威振押运有限公司',
  132. position: '武装押运员',
  133. evaluate: '优秀'
  134. },
  135. {
  136. dateLine: '2018.5 ~ 2020.3',
  137. company: '贵州威振押运有限公司',
  138. position: '武装押运员',
  139. evaluate: '优秀'
  140. },
  141. {
  142. dateLine: '2015.11 ~ 2018.5',
  143. company: '贵州威振押运有限公司',
  144. position: '武装押运员',
  145. evaluate: '优秀'
  146. }
  147. ],
  148. // 是否展开工作经历
  149. isExpand: true,
  150. // 培训与教育经历
  151. trainExperice: [{
  152. dateLine: '2020.3 ~ 2020.5',
  153. classes: '武装押运服务课程',
  154. school: '贵州特种服务职业技术学校',
  155. content: '2020年3月9日毕业,成绩优秀,获得特种服务证书',
  156. evaluate: '优秀'
  157. },
  158. {
  159. dateLine: '2019.3 ~ 2020.2',
  160. classes: '武装押运服务课程',
  161. school: '贵州特种服务职业技术学校',
  162. content: '2020年3月9日毕业,成绩优秀,获得特种服务证书',
  163. evaluate: '优秀'
  164. }
  165. ],
  166. // 是否展开培训经历
  167. isTrainExpand: true
  168. }
  169. },
  170. methods: {
  171. /**
  172. * 跳转到指定页
  173. */
  174. jumpPage(url, params) {
  175. this.$u.route({
  176. url: url,
  177. params: params
  178. })
  179. }
  180. }
  181. }
  182. </script>
  183. <style lang="scss" scoped>
  184. @import 'myResume.scss'
  185. </style>