paper_view.jsp
2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<%@ 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 rel="stylesheet" href="../static/css/bootstrap.min.css" />
<link href="../static/css/teach.css" rel="stylesheet">
<link href="../static/css/paper_view.css?t=1" rel="stylesheet">
<!-- 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;}
.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);}
</style>
</head>
<body>
<div class="container">
<div class="page-header">
<h3 class="col-md-6" id="paper_title"></h3>
<h3 class="col-md-6">考试时间:<span id="time"></span>分钟</h3>
<div class="clearfix"></div>
</div>
<div class="content_report">
<div class="col-md-12 analysis">
<ul>
<!--试题列表-->
</ul>
</div>
<div class="clearfix"></div>
</div>
<div class="save_box">
<input type="button" value="保存" class="btn btn-primary btn-lg topic save" />
</div>
</div>
<script>
var subjectId = '${pd.subject_id}';
</script>
<script src="../static/js/jquery.min.js"></script>
<script src="../static/js/echars.js"></script>
<script src="../static/js/paper_view.js?a=2"></script>
</html>