汇联通执法队后台管理系统
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

queryResult.jsp 1.2KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <div>
  6. <div id="taiji_search_data">
  7. <table >
  8. <tbody>
  9. <c:forEach items="${pagn.result}" var="vo" varStatus="voStatus">
  10. <tr>
  11. <td>
  12. <input type="checkbox" name="checkIds" class='taiji_check_one' value="${vo.id }"/>
  13. ${fn:escapeXml(vo.loginName)}
  14. </td>
  15. <td>
  16. <a href="${rootUrl }app/acl/user/view/${vo.id}" class="taiji_modal taiji_acl" >${fn:escapeXml(vo.name)}</a>
  17. </td>
  18. <td><span>${fn:escapeXml(vo.unit.name)}</span></td>
  19. <td>
  20. <c:if test="${not empty vo.role }">${vo.role.name }</c:if>
  21. </td>
  22. <td>
  23. <c:if test="${vo.male }">男</c:if>
  24. <c:if test="${!vo.male }">女</c:if>
  25. </td>
  26. <td>${vo.status.value }</td>
  27. </tr>
  28. </c:forEach>
  29. </tbody>
  30. </table>
  31. </div>
  32. <div id="taiji_search_pager" >
  33. <label id="taiji_search_totalcount">${pagn.totalCount }</label>
  34. <label id="taiji_search_pagecount">${pagn.pageCount }</label>
  35. <label id="taiji_search_pageNo">${pagn.currentPage }</label>
  36. </div>
  37. </div>