371a1d7eee2fb4f6f4e630f39a7adb4f588a2181.svn-base 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <%@page language="java" pageEncoding="UTF-8"%>
  2. <%@taglib uri="/struts-tags" prefix="s"%>
  3. <%
  4. String path = request.getContextPath();
  5. %>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <title>查看用户信息</title>
  11. <!--框架必需start-->
  12. <script type="text/javascript" src="<%=path%>/libs/js/jquery.js"></script>
  13. <script type="text/javascript" src="<%=path%>/libs/js/language/cn.js"></script>
  14. <script type="text/javascript" src="<%=path%>/libs/js/framework.js"></script>
  15. <link href="<%=path%>/libs/css/import_basic.css" rel="stylesheet" type="text/css"/>
  16. <link rel="stylesheet" type="text/css" id="skin" prePath="<%=path%>/"/>
  17. <link rel="stylesheet" type="text/css" id="customSkin"/>
  18. <!--框架必需end-->
  19. </head>
  20. <body>
  21. <div class="box1" id="formContent" whiteBg="true">
  22. <table class="tableStyle" formMode="view">
  23. <tr>
  24. <th colspan="2">用户信息</th>
  25. </tr>
  26. <tr>
  27. <td width="150">用户名:</td>
  28. <td><s:property value="%{userinfor.userLoginName}"/></td>
  29. </tr>
  30. <tr>
  31. <td>密码:</td>
  32. <td><s:property value="%{userinfor.userPassword}"/></td>
  33. </tr>
  34. <tr>
  35. <td width="150">姓名:</td>
  36. <td><s:property value="%{userinfor.userName}"/></td>
  37. </tr>
  38. <tr>
  39. <td>所属部门:</td>
  40. <td><s:property value="%{userinfor.organization.orgName}"/></td>
  41. </tr>
  42. <tr>
  43. <td>性别:</td>
  44. <td>
  45. <s:if test="%{userinfor.userSex == null}"></s:if>
  46. <s:else>
  47. <s:if test="%{userinfor.userSex == 1}">男</s:if><s:else>女</s:else>
  48. </s:else>
  49. </td>
  50. </tr>
  51. <tr>
  52. <td>入职时间:</td>
  53. <td><s:property value="%{userinfor.userEmployTime}"/></td>
  54. </tr>
  55. <tr>
  56. <td>学历:</td>
  57. <td>
  58. <s:if test="%{userinfor.userEducation == '1'}">专科</s:if>
  59. <s:elseif test="%{userinfor.userEducation == '2'}">本科</s:elseif>
  60. <s:elseif test="%{userinfor.userEducation == '3'}">硕士</s:elseif>
  61. <s:else>博士</s:else>
  62. </td>
  63. </tr>
  64. </table>
  65. </div>
  66. </body>
  67. </html>