| 757dfed6  孙向锦
 
样例报表 | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 |   <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  <%
  	String path = request.getContextPath();
  	String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  %>
  <!DOCTYPE html>
  <html lang="zh-CN">
    <head>
      <meta charset="utf-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <title>即时测</title>
  
      <!-- Bootstrap -->
 | 
| b638e17a  jack
 
1.英文翻译(三) | 18
19
20
21 |       <!-- <link
  	href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"
  	rel="stylesheet"> -->
  	<link rel="stylesheet" href="../static/css/bootstrap.min.css" />
 | 
| 757dfed6  孙向锦
 
样例报表 | 22
23
24
25
26
27
28
29
30 |   	<link rel="stylesheet" href="../static/ace/css/datepicker.css" />
  	<link href="../static/css/teach.css" rel="stylesheet">
  	<link href="../static/css/paper.css?t=1" rel="stylesheet">
    </head>
    <body>
     <div class="head_box">
  		<div class="box_header">
  			<div class="head_box_l">
  				<p>
 | 
| ff7ab13e  孙向锦
 
修复一些小bug | 31 |   					<span class="right_b"></span>即时测测验分析
 | 
| 757dfed6  孙向锦
 
样例报表 | 32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51 |   				</p>
  			</div>
  			<div class="head_box_r">
  				<input class="date-picker" type="text" placeholder="开始日期" name="lastStart" id="lastStart" data-date-format="yyyy-mm-dd" readonly="readonly" value=""/> 
  				<input type="text" class="date-picker" placeholder="结束日期" name="lastEnd" id="lastEnd" data-date-format="yyyy-mm-dd" readonly="readonly" value=""/>				
  				 <a onclick="tosearch();"><img
  					src="../static/images/search.png" /></a>
  			</div>
  			<div class="clear"></div>
  			</div>
  			<div style="padding:0 5%;background:#fff;">
  				<table class="table table-striped">
  				<col style="width: 10%" />
  				<col style="width: 20%" />
  				<col style="width: 10%" />
  				<col style="width: 20%" />
  				<col style="width: 10%" />
  				<thead>
  					<tr>
  						<th>序号</th>
 | 
| ff7ab13e  孙向锦
 
修复一些小bug | 52 |   						<th>测验名称</th>
 | 
| 757dfed6  孙向锦
 
样例报表 | 53 |   						<th>班级</th>
 | 
| ff7ab13e  孙向锦
 
修复一些小bug | 54 |   						<th>创建时间</th>
 | 
| f143f558  孙向锦
 
修改管理员登录白屏问题 | 55 |   						<th>操作</th>
 | 
| 757dfed6  孙向锦
 
样例报表 | 56
57
58
59
60
61
62
63
64
65
66
67
68
69 |   					</tr>
  				</thead>
  			</table>
  			</div>
  			<div class="clearfix"></div>
  		</div>
  		<div class="table_box">
  			<table class="table table-striped">
  				<col style="width: 10%" />
  				<col style="width: 20%" />
  				<col style="width: 10%" />
  				<col style="width: 20%" />
  				<col style="width: 10%" />
  				<tbody id="tab_body">
 | 
| ddbc622f  孙向锦
 
0829版本 | 70 |   					<!--测验列表-->
 | 
| 757dfed6  孙向锦
 
样例报表 | 71
72
73
74
75 |   				</tbody>
  			</table>
  	
  	
  			<div class="footer">
 | 
| 757dfed6  孙向锦
 
样例报表 | 76 |   				<div class="page_box">
 | 
| 757dfed6  孙向锦
 
样例报表 | 77
78
79
80 |   					<div class="pagination" style="float: right;padding-top: 0px;margin-top: 0px;">${page.pageStr}</div>
  				</div>
  			</div>
  		</div>
 | 
| ddbc622f  孙向锦
 
0829版本 | 81 |     
 | 
| b638e17a  jack
 
1.英文翻译(三) | 82
83 |   	<script src="../static/js/jquery.min.js"></script>
  	<script src="../static/js/bootstrap.min.js"></script>
 | 
| 757dfed6  孙向锦
 
样例报表 | 84 |   	<script src="../static/ace/js/date-time/bootstrap-datepicker.js"></script>
 | 
| ff7ab13e  孙向锦
 
修复一些小bug | 85
86 |   	<script type="text/javascript">
  		var user_id= "${pd.userId}";
 | 
| eef2f078  孙向锦
 
修改域名问题 | 87 |   		var url = "<%=basePath%>";
 | 
| 8bdfc7d1  孙向锦
 
修改即时测链接都无效 | 88 |   		$(document).ready(function(){
 | 
| 2ce09a20  jack
 
1.修改bug | 89 |   			$(".table_box").css("padding-top",$(".head_box").height());
 | 
| 8bdfc7d1  孙向锦
 
修改即时测链接都无效 | 90
91 |   			window.top.loading.remove();
  		});
 | 
| ff7ab13e  孙向锦
 
修复一些小bug | 92 |   	</script>
 | 
| 2ce09a20  jack
 
1.修改bug | 93 |   	<script src="../static/js/test_list.js?a=2"></script>
 | 
| 757dfed6  孙向锦
 
样例报表 | 94 |   </html>
 |