pre-info.wxml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <!--pages/pre-info/pre-info.wxml-->
  2. <view class="base">
  3. <!-- 顶部 -->
  4. <view class="top-container">
  5. <image src="../../image/touxiang.jpg" class="top-img"></image>
  6. <text class="top-name">{{baseinfo.sname}}</text>
  7. </view>
  8. <!-- 顶部end-->
  9. <!-- 基本信息 -->
  10. <view class="baseinfo">
  11. <view class="baseinfo-item">
  12. <text>年龄:</text>
  13. <text style="color:#999999">23</text>
  14. </view>
  15. <view class="baseinfo-item">
  16. <text>身高:</text>
  17. <text style="color:#999999">{{baseinfo.height}}cm</text>
  18. </view>
  19. <view class="baseinfo-item">
  20. <text>性别:</text>
  21. <!-- <text style="color:#999999">男</text> -->
  22. <text style="color:#999999" wx:if="{{baseinfo.sex==1}}">男</text>
  23. <text style="color:#999999" wx:if="{{baseinfo.sex==2}}">女</text>
  24. </view>
  25. <view class="baseinfo-item">
  26. <text>教育情况:</text>
  27. <text style="color:#999999" wx:if="{{baseinfo.eduStatus==1}}">在读</text>
  28. <text style="color:#999999" wx:if="{{baseinfo.eduStatus==2}}">已毕业</text>
  29. </view>
  30. <view class="baseinfo-item">
  31. <text>所在城市:</text>
  32. <text style="color:#999999">{{baseinfo.place}}</text>
  33. </view>
  34. <view class="baseinfo-item">
  35. <text>联系电话:</text>
  36. <text style="color:#999999">{{baseinfo.phoneNumber}}</text>
  37. </view>
  38. <view class="baseinfo-item">
  39. <text>联系邮箱:</text>
  40. <text style="color:#999999">{{baseinfo.email}}</text>
  41. </view>
  42. <view class="baseinfo-item">
  43. <text>QQ:</text>
  44. <text style="color:#999999">{{(baseinfo.qqNum=="")?"暂无":baseinfo.qqNum}}</text>
  45. </view>
  46. </view>
  47. <!-- 基本信息 end-->
  48. <!-- 简历各项信息 -->
  49. <view class="otherInfo" wx:for="{{otherInfoList}}" wx:key="oId" wx:for-index="oIdx" wx:for-item="otherInfo">
  50. <!-- 单独一项信息 -->
  51. <view class="otherInfo-{{otherInfo.oClass}}">
  52. <!-- 填写了该项信息 教育经历 工作经历 模块-->
  53. <block wx:if="{{otherInfo.oClass=='item'}}">
  54. <!-- 第一行 该项标题-->
  55. <view class="otherInfo-item-first">
  56. <view class="otherInfo-item-first-left">
  57. <view class="otherInfo-item-first-left-icon"></view>
  58. <text class="otherInfo-item-first-left-word">{{otherInfo.itemTittle}}</text>
  59. </view>
  60. </view>
  61. <!-- 第二行 分割线-->
  62. <view class="otherInfo-item-secord"></view>
  63. <!-- 教育经历 工作经历 模块 第三行 主要经历信息-->
  64. <view class="otherInfo-item-third" wx:for="{{otherInfo.experienceList}}" wx:key="eId" wx:for-index="eIdx" wx:for-item="experience" wx:if="{{oIdx <= 1}}">
  65. <view class="otherInfo-item-third-left">
  66. <!-- 第三行 主要经历信息 左边 组合icon -->
  67. <view class="otherInfo-item-third-splicedicon">
  68. <view class="otherInfo-item-third-splicedicon-spot"></view>
  69. <view class="otherInfo-item-third-splicedicon-line"></view>
  70. </view>
  71. <!-- 第三行 主要经历信息 左边 文字信息 -->
  72. <view class="otherInfo-item-third-message">
  73. <!-- 第三行 ...文字信息的 第一行(时间)-->
  74. <view class="otherInfo-item-third-message-first">{{experience.startTime}} 至 {{experience.endTime}}</view>
  75. <!-- 第三行 ...文字信息的 第二行(学校|学位 or 公司名)-->
  76. <view class="otherInfo-item-third-message-secord"wx:if="{{oIdx == 0}}">{{experience.school}} | {{experience.degree}}</view>
  77. <view class="otherInfo-item-third-message-secord"wx:if="{{oIdx == 1}}">公司名:{{experience.company}}</view>
  78. <!-- 第三行 ...文字信息的 第三行(主修专业 or 主要工作内容)-->
  79. <view class="otherInfo-item-third-message-third" wx:if="{{oIdx == 0}}">主修专业:{{experience.major}}</view>
  80. <view class="otherInfo-item-third-message-third" wx:if="{{oIdx == 1}}">主要工作内容:{{experience.experience}}</view>
  81. <!-- 第三行 ...文字信息的 第四行(在校经历)-->
  82. <text class="otherInfo-item-third-message-fourth" wx:if="{{oIdx == 0}}">期间经历:{{experience.experience}}</text>
  83. </view>
  84. </view>
  85. </view>
  86. <!-- 工作期望 模块 第三行 期望内容-->
  87. <view wx:if="{{oIdx == 2}}" class="work-expect" wx:for="{{otherInfo.experienceList}}" wx:key="wId">
  88. <text class="work-expect-item">期望的工作类型:{{item.expectedJobType}}</text>
  89. <text class="work-expect-item">期望的工作时间:{{item.shortJobTime}}</text>
  90. <text class="work-expect-item">可上班时间:{{item.ableWorkDay}}</text>
  91. <text wx:if="{{item.isFullTime==1}}" class="work-expect-item">是否支持全职上班:是</text>
  92. <text wx:if="{{item.isFullTime==0}}" class="work-expect-item">是否支持全职上班:否</text>
  93. </view>
  94. <!-- 自我评价 模块 第三行 评价内容-->
  95. <text class="self-item" wx:if="{{oIdx == 3}}">{{otherInfo.experienceList}}</text>
  96. </block>
  97. </view>
  98. </view>
  99. </view>