index.wxml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <wxs src="../tools.wxs" module="globalTools" />
  2. <view class='card'>
  3. <image class="avatar" src="{{userResume.headImg}}" />
  4. <view class="flex">
  5. <text class="name">{{userResume.realName}}</text>
  6. <text class="wz">简历写得好,工作更好找,脱贫没烦恼!</text>
  7. </view>
  8. </view>
  9. <view class='basic'>
  10. <text class="persondetail">个人资料</text>
  11. <image class="edit" src="{{imgServerUrl}}/images/happyjob/edit1.png" bindtap='toUserInfo' />
  12. </view>
  13. <view class='basic-info'>
  14. <view class='infoma'>
  15. <text class="detailinfo">性别:</text>
  16. <text class="detail" wx:if='{{userResume.gender==1}}'>男</text>
  17. <text class="detail" wx:if='{{userResume.gender==2}}'>女</text>
  18. </view>
  19. <view class='infoma'>
  20. <text class="detailinfo">年龄:</text>
  21. <text class="detail">{{year}}岁</text>
  22. </view>
  23. <view class='infoma'>
  24. <text class="detailinfo">最高学历:</text>
  25. <text class="detail">{{eduName}}</text>
  26. </view>
  27. <view class='infoma'>
  28. <text class="detailinfo">联系方式:</text>
  29. <text class="detail">{{userResume.phone}}</text>
  30. </view>
  31. </view>
  32. <view class='basic'>
  33. <text class="persondetail">求职意向</text>
  34. <image class="edit" src="{{imgServerUrl}}/images/happyjob/edit1.png" bindtap='toUserJob' />
  35. </view>
  36. <view class='basic-info1' wx:if="{{userResume.expectationPosition}}">
  37. <view class='infoma'>
  38. <text class="detailinfo">期望岗位:</text>
  39. <view class="detail">
  40. <block wx:for="{{globalTools.splitStr1(userResume.expectationPosition,',')}}" wx:for-item="item" wx:key="*this">
  41. {{expectationPosition[item]}}
  42. </block>
  43. </view>
  44. </view>
  45. <view class='infoma'>
  46. <text class="detailinfo">期望地点:</text>
  47. <text class="detail">{{userResume.expectationAddress}}</text>
  48. </view>
  49. <view class='infoma'>
  50. <text class="detailinfo">期望薪资:</text>
  51. <text class="detail">{{userResume.expectationSalary}}</text>
  52. </view>
  53. </view>
  54. <view wx:if='{{!userResume.expectationPosition}}' class='add' bindtap='toUserJob'>
  55. <image src="{{imgServerUrl}}/images/happyjob/addinfo.png" />
  56. <text>添加求职意向,更易筛选岗位</text>
  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 class='add' bindtap='toUserWorks' data-type="new">
  79. <image src="{{imgServerUrl}}/images/happyjob/addinfo.png" />
  80. <text>添加求职意向,更易筛选岗位</text>
  81. </view>
  82. <!-- <view class='wx'>
  83. <view class='infoma'>
  84. <text class="detailinfo">微信账号:</text>
  85. <view class="dba">
  86. <input class="detail" value='{{userResume.wechatNumber}}' bindblur='changewxname'></input>
  87. <image class="edit1" src="{{imgServerUrl}}/images/happyjob/edit1.png" />
  88. </view>
  89. </view>
  90. </view> -->