failList.jsp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>及格率管理</title>
  6. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  7. <meta name="decorator" content="ani"/>
  8. <%@ include file="/webpage/include/bootstraptable.jsp"%>
  9. <%@include file="/webpage/include/treeview.jsp" %>
  10. <%@include file="failList.js" %>
  11. </head>
  12. <body>
  13. <div class="wrapper wrapper-content">
  14. <div class="panel panel-primary">
  15. <div class="panel-heading">
  16. <h3 class="panel-title">
  17. <a class="panelButton" href="${ctx}/exam/eduUserTests/passRate"><i class="ti-angle-left"></i> 返回</a>
  18. </h3>
  19. </div>
  20. <div class="panel-body">
  21. <!-- 搜索 -->
  22. <div id="search-collapse" class="collapse">
  23. <div class="accordion-inner">
  24. <form:form id="searchForm" modelAttribute="eduUserTests" class="form form-horizontal well clearfix">
  25. <input type="hidden" id="paperId" name="paperId" value="${eduUserTests.paperId}">
  26. <div class="col-xs-12 col-sm-6 col-md-4">
  27. <label class="label-item single-overflow pull-left" title="姓名:">姓名:</label>
  28. <form:input path="name" htmlEscape="false" maxlength="500" class=" form-control"/>
  29. </div>
  30. <div class="col-xs-12 col-sm-6 col-md-4">
  31. <div style="margin-top:26px">
  32. <a id="search" class="btn btn-primary btn-rounded btn-bordered btn-sm"><i class="fa fa-search"></i> 查询</a>
  33. <a id="reset" class="btn btn-primary btn-rounded btn-bordered btn-sm" ><i class="fa fa-refresh"></i> 重置</a>
  34. </div>
  35. </div>
  36. </form:form>
  37. </div>
  38. </div>
  39. <!-- 表格 -->
  40. <table id="passRateTable" data-toolbar="#toolbar"></table>
  41. <!-- context menu -->
  42. <ul id="context-menu" class="dropdown-menu">
  43. <li data-item="view"><a>查看</a></li>
  44. <li data-item="action1"><a>取消</a></li>
  45. </ul>
  46. </div>
  47. </div>
  48. </div>
  49. </body>
  50. </html>