Blame view

WebRoot/WEB-INF/jsp/sunvote/teacher/paper_view.jsp 2.57 KB
c617106f   孙向锦   添加即时测功能
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" />
c617106f   孙向锦   添加即时测功能
22
  	<link href="../static/css/teach.css" rel="stylesheet">
757dfed6   孙向锦   样例报表
23
  	<link href="../static/css/paper_view.css?t=1" rel="stylesheet">
c617106f   孙向锦   添加即时测功能
24
25
26
27
28
29
30
31
32
33
  
      <!-- 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   孙向锦   样例报表
34
35
36
37
38
  		 .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   孙向锦   添加即时测功能
39
40
41
42
43
44
  	</style>
    </head>
    <body>
    <div class="container">
      <div class="page-header">
  	  <h3 class="col-md-6" id="paper_title"></h3>
757dfed6   孙向锦   样例报表
45
  	   <h3 class="col-md-6">考试时间:<span id="time"></span>分钟</h3>
c617106f   孙向锦   添加即时测功能
46
47
48
  		<div class="clearfix"></div>
  	</div>
  	<div class="content_report">
757dfed6   孙向锦   样例报表
49
50
  
  		<div class="col-md-12 analysis">
c617106f   孙向锦   添加即时测功能
51
  			<ul>
ddbc622f   孙向锦   0829版本
52
  				<!--试题列表-->
c617106f   孙向锦   添加即时测功能
53
54
  			</ul>
  		</div>
757dfed6   孙向锦   样例报表
55
56
57
  		<div class="clearfix"></div>
  	</div>
  	<div class="save_box">
ddbc622f   孙向锦   0829版本
58
  		<input type="button" value="保存" class="btn btn-primary btn-lg topic save" />
c617106f   孙向锦   添加即时测功能
59
  	</div>
c617106f   孙向锦   添加即时测功能
60
  	</div>
f143f558   孙向锦   修改管理员登录白屏问题
61
62
63
  	<script>
  		var subjectId = '${pd.subject_id}';
  	</script>
b638e17a   jack   1.英文翻译(三)
64
  	<script src="../static/js/jquery.min.js"></script>
757dfed6   孙向锦   样例报表
65
  	<script src="../static/js/echars.js"></script>
f143f558   孙向锦   修改管理员登录白屏问题
66
  	<script src="../static/js/paper_view.js?a=2"></script>
c617106f   孙向锦   添加即时测功能
67
  	
c617106f   孙向锦   添加即时测功能
68
  </html>