汇联通执法队后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

info.jsp 914B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <%@ page contentType="text/html;charset=utf-8"%>
  4. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  5. <html>
  6. <body>
  7. <table width="100%" class="table table-bordered ">
  8. <tr>
  9. <th>用户名:</th>
  10. <td>${fn:escapeXml(pageModel.name)}</td>
  11. <th>登录名:</th>
  12. <td>${fn:escapeXml(pageModel.loginName)}</td>
  13. <th>状态:</th>
  14. <td>${pageModel.status.value}</td>
  15. <th>性别:</th>
  16. <td>
  17. <c:if test="${pageModel.male}">男</c:if>
  18. <c:if test="${!pageModel.male}">女</c:if>
  19. </td>
  20. </tr>
  21. <tr>
  22. <th>邮箱:</th>
  23. <td>${fn:escapeXml(pageModel.email)}</td>
  24. <th>手机:</th>
  25. <td>${pageModel.mobile}</td>
  26. <th>电话:</th>
  27. <td>${pageModel.tel}</td>
  28. <th>传真:</th>
  29. <td>${pageModel.fax}</td>
  30. </tr>
  31. </table>
  32. </body>
  33. </html>