userInfoView.jsp 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>人员基本信息管理</title>
  6. <meta name="decorator" content="default"/>
  7. <script type="text/javascript">
  8. </script>
  9. </head>
  10. <body class="hideScroll">
  11. <form:form id="inputForm" modelAttribute="userInfo" class="form-horizontal">
  12. <table class="table table-bordered table-condensed dataTables-example dataTable no-footer">
  13. <tbody>
  14. <tr>
  15. <td class="width-15 active"><label class="pull-right">姓名:</label></td>
  16. <td class="width-35">
  17. <c:if test="${not empty userInfo.name}">${userInfo.name}</c:if>
  18. <c:if test="${empty userInfo.name}">${userInfo.user.name}</c:if>
  19. </td>
  20. <td class="width-15 active"><label class="pull-right">性别:</label></td>
  21. <td class="width-35">
  22. <c:if test="${not empty userInfo.gender}">
  23. ${fns:getDictLabel(userInfo.gender,'sex' ,'' )}
  24. </c:if>
  25. <c:if test="${empty userInfo.gender}">
  26. ${fns:getDictLabel(userInfo.user.sex,'sex' ,'' )}
  27. </c:if>
  28. </td>
  29. </tr>
  30. <tr>
  31. <td class="width-15 active"><label class="pull-right">昵称:</label></td>
  32. <td class="width-35">
  33. ${userInfo.nickName}
  34. </td>
  35. <td class="width-15 active"><label class="pull-right">工号:</label></td>
  36. <td class="width-35">
  37. ${userInfo.jobNumber}
  38. </td>
  39. </tr>
  40. <tr>
  41. <td class="width-15 active"><label class="pull-right">最高学历:</label></td>
  42. <td class="width-35">
  43. ${fns:getDictLabel(userInfo.highestDegree,'education_level','')}
  44. </td>
  45. <td class="width-15 active"><label class="pull-right">最高学历院校:</label></td>
  46. <td class="width-35">
  47. ${userInfo.highestSchool}
  48. </td>
  49. </tr>
  50. <tr>
  51. <td class="width-15 active"><label class="pull-right">最高学历专业:</label></td>
  52. <td class="width-35">
  53. ${userInfo.highestProfession}
  54. </td>
  55. <td class="width-15 active"><label class="pull-right">最高学历毕业时间:</label></td>
  56. <td class="width-35">
  57. <fmt:formatDate value="${userInfo.highestGraduationTime}" pattern="yyyy-MM-dd"/>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td class="width-15 active"><label class="pull-right">第一学历:</label></td>
  62. <td class="width-35">
  63. ${fns:getDictLabel(userInfo.firstDegree,'education_level','')}
  64. </td>
  65. <td class="width-15 active"><label class="pull-right">第一学历院校:</label></td>
  66. <td class="width-35">
  67. ${userInfo.firstSchool}
  68. </td>
  69. </tr>
  70. <tr>
  71. <td class="width-15 active"><label class="pull-right">第一学历专业:</label></td>
  72. <td class="width-35">
  73. ${userInfo.firstProfession}
  74. </td>
  75. <td class="width-15 active"><label class="pull-right">第一学历毕业时间:</label></td>
  76. <td class="width-35">
  77. <fmt:formatDate value="${userInfo.firstGraduationTime}" pattern="yyyy-MM-dd"/>
  78. </td>
  79. </tr>
  80. <tr>
  81. <td class="width-15 active"><label class="pull-right">出生日期:</label></td>
  82. <td class="width-35">
  83. <fmt:formatDate value="${userInfo.birthday}" pattern="yyyy-MM-dd"/>
  84. </td>
  85. <td class="width-15 active"><label class="pull-right">身份证号:</label></td>
  86. <td class="width-35">
  87. ${userInfo.idCard}
  88. </td>
  89. </tr>
  90. <tr>
  91. <td class="width-15 active"><label class="pull-right">职称:</label></td>
  92. <td class="width-35">
  93. ${userInfo.professionalTitle}
  94. </td>
  95. <td class="width-15 active"><label class="pull-right">获取职称日期:</label></td>
  96. <td class="width-35">
  97. <fmt:formatDate value="${userInfo.professionalGetdate}" pattern="yyyy-MM-dd"/>
  98. </td>
  99. </tr>
  100. <tr>
  101. <td class="width-15 active"><label class="pull-right">社保账号:</label></td>
  102. <td class="width-35">
  103. ${userInfo.socialInsuranceAccount}
  104. </td>
  105. <td class="width-15 active"><label class="pull-right">医保账号:</label></td>
  106. <td class="width-35">
  107. ${userInfo.medicalInsuranceAccount}
  108. </td>
  109. </tr>
  110. <tr>
  111. <td class="width-15 active"><label class="pull-right">银行账号:</label></td>
  112. <td class="width-35">
  113. ${userInfo.bankAccount}
  114. </td>
  115. <td class="width-15 active"><label class="pull-right">公积金账号:</label></td>
  116. <td class="width-35">
  117. ${userInfo.providentFundAccount}
  118. </td>
  119. </tr>
  120. <tr>
  121. <td class="width-15 active"><label class="pull-right">QQ号:</label></td>
  122. <td class="width-35">
  123. ${userInfo.qq}
  124. </td>
  125. <td class="width-15 active"><label class="pull-right">微信号:</label></td>
  126. <td class="width-35">
  127. ${userInfo.weixin}
  128. </td>
  129. </tr>
  130. <tr>
  131. <td class="width-15 active"><label class="pull-right">联系电话:</label></td>
  132. <td class="width-35">
  133. <c:if test="${not empty userInfo.mobilePhone}">${userInfo.mobilePhone}</c:if>
  134. <c:if test="${empty userInfo.mobilePhone}">${userInfo.user.mobile}</c:if>
  135. </td>
  136. <td class="width-15 active"><label class="pull-right">电子邮件:</label></td>
  137. <td class="width-35">
  138. ${userInfo.email}
  139. </td>
  140. </tr>
  141. <tr>
  142. <td class="width-15 active"><label class="pull-right">是否造价师(0否,1是):</label></td>
  143. <td class="width-35">
  144. ${fns:getDictLabel(userInfo.isCostengineer,'is_costEngineer','')}
  145. </td>
  146. <td class="width-15 active"><label class="pull-right">造价师取得日期:</label></td>
  147. <td class="width-35">
  148. <fmt:formatDate value="${userInfo.costengineerGetdate}" pattern="yyyy-MM-dd"/>
  149. </td>
  150. </tr>
  151. <tr>
  152. <td class="width-15 active"><label class="pull-right">报到日期:</label></td>
  153. <td class="width-35">
  154. <fmt:formatDate value="${userInfo.workstartDate}" pattern="yyyy-MM-dd"/>
  155. </td>
  156. <td class="width-15 active"><label class="pull-right">试用岗位:</label></td>
  157. <td class="width-35">
  158. ${userInfo.probationPosition}
  159. </td>
  160. </tr>
  161. <tr>
  162. <td class="width-15 active"><label class="pull-right">试用期(n个月):</label></td>
  163. <td class="width-35">
  164. ${userInfo.probationDuration}
  165. </td>
  166. <td class="width-15 active"><label class="pull-right">试用结束日期:</label></td>
  167. <td class="width-35">
  168. <fmt:formatDate value="${userInfo.probationEnddate}" pattern="yyyy-MM-dd"/>
  169. </td>
  170. </tr>
  171. <tr>
  172. <td class="width-15 active"><label class="pull-right">职业资格:</label></td>
  173. <td class="width-35">
  174. ${userInfo.professionalQualification}
  175. </td>
  176. <td class="width-15 active"><label class="pull-right">从事专业:</label></td>
  177. <td class="width-35">
  178. ${userInfo.engagedJob}
  179. </td>
  180. </tr>
  181. <tr>
  182. <td class="width-15 active"><label class="pull-right">其他资质:</label></td>
  183. <td class="width-35" colspan="3">
  184. ${userInfo.otherQualification}
  185. </td>
  186. </tr>
  187. <tr>
  188. <td class="width-15 active"><label class="pull-right">个人简介:</label></td>
  189. <td class="width-35" colspan="3">
  190. ${userInfo.personalProfile}
  191. </td>
  192. </tr>
  193. <tr>
  194. <td class="width-15 active"><label class="pull-right">备注信息:</label></td>
  195. <td class="width-35" colspan="3">
  196. ${userInfo.remarks}
  197. </td>
  198. </tr>
  199. </tbody>
  200. </table>
  201. </form:form>
  202. </body>
  203. </html>