index.wxml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <wxs src="../tools.wxs" module="globalTools" />
  2. <view class="watermark">
  3. <block wx:for='{{watermark}}' wx:for-item='watermark' wx:key='index'>
  4. <image wx:for='{{watermark}}' wx:key='index' src="/images/happyjob/watermark.png" style="left:{{item.left}}rpx;top:{{item.top}}rpx" class="watermark-img"></image>
  5. </block>
  6. </view>
  7. <view class="container">
  8. <view class='card'>
  9. <image class="avatar" src="{{userResume.headImg}}" />
  10. <view class="flex">
  11. <text class="name">{{userResume.realName}}</text>
  12. <text class="wz">简历写得好,工作更好找,脱贫没烦恼!</text>
  13. </view>
  14. </view>
  15. <view class='basic'>
  16. <text class="persondetail">个人资料</text>
  17. </view>
  18. <view class='basic-info'>
  19. <view class='infoma'>
  20. <text class="detailinfo">性别:</text>
  21. <text class="detail" wx:if='{{userResume.gender==1}}'>男</text>
  22. <text class="detail" wx:if='{{userResume.gender==2}}'>女</text>
  23. </view>
  24. <view class='infoma'>
  25. <text class="detailinfo">年龄:</text>
  26. <text class="detail">{{userResume.birthYear}}</text>
  27. </view>
  28. <view class='infoma'>
  29. <text class="detailinfo">最高学历:</text>
  30. <text class="detail">{{eduList[userResume.highestQualification]}}</text>
  31. </view>
  32. <view class='infoma'>
  33. <text class="detailinfo">联系方式:</text>
  34. <text class="detail">{{userResume.phone}}</text>
  35. </view>
  36. </view>
  37. <view class='basic'>
  38. <text class="persondetail">求职意向</text>
  39. </view>
  40. <view class='basic-info1' wx:if="{{userResume.expectationPosition}}">
  41. <view class='infoma'>
  42. <text class="detailinfo">期望岗位:</text>
  43. <view class="detail">
  44. <block wx:for="{{globalTools.splitStr1(userResume.expectationPosition,',')}}" wx:for-item="item" wx:key="*this">
  45. {{expectationPosition[item]}}
  46. </block>
  47. </view>
  48. </view>
  49. <view class='infoma'>
  50. <text class="detailinfo">期望地点:</text>
  51. <text class="detail">{{userResume.expectationAddress}}</text>
  52. </view>
  53. <view class='infoma'>
  54. <text class="detailinfo">期望薪资:</text>
  55. <text class="detail">{{userResume.expectationSalary}}</text>
  56. </view>
  57. </view>
  58. <view class='basic'>
  59. <text class="persondetail">工作经验</text>
  60. </view>
  61. <view class='basic-info2' wx:if="{{expList.length}}" wx:for="{{expList}}" wx:key="hpUserResumeId" bindtap="toUserWorks" data-type="edit" data-index="{{index}}">
  62. <view class='infoma'>
  63. <text class="detailinfo">企业名称:</text>
  64. <view class="dba">
  65. <text class="detail">{{item.workCompany}}</text>
  66. <image class="edit1" src="{{imgServerUrl}}/images/happyjob/edit1.png" />
  67. </view>
  68. </view>
  69. <view class='infoma'>
  70. <text class="detailinfo">工作岗位:</text>
  71. <text class="detail">{{item.workPosition}}</text>
  72. </view>
  73. <view class='infoma'>
  74. <text class="detailinfo">工作时间:</text>
  75. <text class="detail">{{item.workStartDate}}~{{item.workEndDate}}</text>
  76. </view>
  77. </view>
  78. </view>