| c617106f  孙向锦
 
添加即时测功能 | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 |   <%@ 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 -->
      <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
  	<link href="../static/css/teach.css" rel="stylesheet">
 | 
| 757dfed6  孙向锦
 
样例报表 | 20 |   	<link href="../static/css/paper_view.css?t=1" rel="stylesheet">
 | 
| c617106f  孙向锦
 
添加即时测功能 | 21
22
23
24
25
26
27
28
29
30 |   
      <!-- HTML5 shim 和 Respond.js 是为了让 IE8 支持 HTML5 元素和媒体查询(media queries)功能 -->
      <!-- 警告:通过 file:// 协议(就是直接将 html 页面拖拽到浏览器中)访问页面时 Respond.js 不起作用 -->
      <!--[if lt IE 9]>
        <script src="https://cdn.bootcss.com/html5shiv/3.7.3/html5shiv.min.js"></script>
        <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
      <![endif]-->
  	<style>
  		 .analysis table{display:inline-block;vertical-align:middle;}
  		 .resolve_box img{vertical-align:top;}
 | 
| 757dfed6  孙向锦
 
样例报表 | 31
32
33
34
35 |   		 .up{width:20px;hiehgt:20px;}
  		 .down{width:20px;height:20px;margin-left:10px;}
  		 .save_box{width:100%;height:80px;background:#fff;text-align:center;position:fixed;bottom:0;left:0;}
  		 .container{height:100%;}
  		 .content_report{padding-bottom:80px;min-height:calc(100% - 126px);}
 | 
| c617106f  孙向锦
 
添加即时测功能 | 36
37
38
39
40
41 |   	</style>
    </head>
    <body>
    <div class="container">
      <div class="page-header">
  	  <h3 class="col-md-6" id="paper_title"></h3>
 | 
| 757dfed6  孙向锦
 
样例报表 | 42 |   	   <h3 class="col-md-6">考试时间:<span id="time"></span>分钟</h3>
 | 
| c617106f  孙向锦
 
添加即时测功能 | 43
44
45 |   		<div class="clearfix"></div>
  	</div>
  	<div class="content_report">
 | 
| 757dfed6  孙向锦
 
样例报表 | 46
47 |   
  		<div class="col-md-12 analysis">
 | 
| c617106f  孙向锦
 
添加即时测功能 | 48 |   			<ul>
 | 
| ddbc622f  孙向锦
 
0829版本 | 49 |   				<!--试题列表-->
 | 
| c617106f  孙向锦
 
添加即时测功能 | 50
51 |   			</ul>
  		</div>
 | 
| 757dfed6  孙向锦
 
样例报表 | 52
53
54 |   		<div class="clearfix"></div>
  	</div>
  	<div class="save_box">
 | 
| ddbc622f  孙向锦
 
0829版本 | 55 |   		<input type="button" value="保存" class="btn btn-primary btn-lg topic save" />
 | 
| c617106f  孙向锦
 
添加即时测功能 | 56 |   	</div>
 | 
| c617106f  孙向锦
 
添加即时测功能 | 57
58 |   	</div>
  	<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
 | 
| 757dfed6  孙向锦
 
样例报表 | 59 |   	<script src="../static/js/echars.js"></script>
 | 
| ddbc622f  孙向锦
 
0829版本 | 60 |   	<script src="../static/js/paper_view.js"></script>
 | 
| c617106f  孙向锦
 
添加即时测功能 | 61 |   	
 | 
| c617106f  孙向锦
 
添加即时测功能 | 62 |   </html>
 |