汇联通执法队后台管理系统
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.

queryResult.jsp 1.1KB

hace 3 años
12345678910111213141516171819202122232425262728293031
  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  3. <div>
  4. <div id="taiji_search_data">
  5. <table class="table table-striped table-bordered table-hover ">
  6. <thead>
  7. <tr>
  8. <th style="width:150px" >序号</th>
  9. <th style="min-width:160px">单位</th>
  10. <th style="min-width:160px">角色名称</th>
  11. <th ><span>描述</span></th>
  12. <th style="min-width:120px" class="taiji_sortable {orderBy:'list',desc:false}
  13. <c:if test="${queryModel.orderBy eq 'list' }">${queryModel.desc?'taiji_desc':'taiji_asc' }</c:if> "
  14. >排序号${queryModel.desc?'降序':'升序' }${not empty randomBoolean&&randomBoolean?'(动态表头)':''}
  15. </th>
  16. <th>操作</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. <c:forEach items="${roles}" var="vo" varStatus="voStatus">
  21. <%@ include file="row.jsp"%>
  22. </c:forEach>
  23. </tbody>
  24. </table>
  25. </div>
  26. <div id="taiji_search_pager" >
  27. <label id="taiji_search_totalcount">${pagn.totalCount }</label>
  28. <label id="taiji_search_pagecount">${pagn.pageCount }</label>
  29. <label id="taiji_search_pageNo">${pagn.currentPage }</label>
  30. </div>
  31. </div>