Blame view

WebRoot/WEB-INF/jsp/sunvote/teacher/teach_paper.jsp 4.61 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" />
757dfed6   孙向锦   样例报表
22
23
  	
  	<link rel="stylesheet" href="../static/ace/css/datepicker.css" />
c617106f   孙向锦   添加即时测功能
24
  	<link href="../static/css/teach.css" rel="stylesheet">
757dfed6   孙向锦   样例报表
25
  	<link href="../static/css/paper.css?t=1" rel="stylesheet">
c617106f   孙向锦   添加即时测功能
26
27
    </head>
    <body>
757dfed6   孙向锦   样例报表
28
29
30
31
32
33
34
35
36
37
38
39
    
  	  <div class="head_box">
  		<div class="box_header">
  			<div class="head_box_l">
  				<p>
  					<span class="right_b"></span>即时测试卷管理
  				</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=""/>
  				<select name="dealer_id_2" id="dealer_id_2" class="selectpicker show-tick form-control"  data-width="98%" data-first-option="false" required data-live-search="true">
ddbc622f   孙向锦   0829版本
40
  					<!--班级列表-->
757dfed6   孙向锦   样例报表
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
  				 </select>
  				 <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: 10%" />
  				<col style="width: 10%" />
  				<col style="width: 20%" />
  				<col style="width: 10%" />
  				<col style="width: 10%" />
  				<thead>
  					<tr>
  						<th><input type="checkbox"  name='ids' id="ids" />序号</th>
  						<th>试卷名称</th>
  						<th>班级</th>
  						<th>科目</th>
  						<th>考试时长</th>
  						<th>创建时间</th>
  						<th>查看</th>
  						<th>操作</th>
  					</tr>
  				</thead>
  			</table>
  			</div>
  			<div class="clearfix"></div>
c617106f   孙向锦   添加即时测功能
72
  		</div>
757dfed6   孙向锦   样例报表
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  		<div class="table_box">
  			<table class="table table-striped">
  				<col style="width: 10%" />
  				<col style="width: 20%" />
  				<col style="width: 10%" />
  				<col style="width: 10%" />
  				<col style="width: 10%" />
  				<col style="width: 20%" />
  				<col style="width: 10%" />
  				<tbody id="tab_body">
  				
  				</tbody>
  			</table>
  	
  	
  			<div class="footer">
  				<div class="creat">
  					<input type="button"  id="creatPaper" value="新建试卷" />
  				</div>
  				<div class="removeAll">
  					<input type="button" onclick="deleteAll()" value="批量删除" />
  				</div>
  				<div class="page_box">
  					
  					<div class="pagination" style="float: right;padding-top: 0px;margin-top: 0px;">${page.pageStr}</div>
  				</div>
  			</div>
c617106f   孙向锦   添加即时测功能
100
  		</div>
757dfed6   孙向锦   样例报表
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
  		<div class="modal fade" id="myModal" tabindex="-1" role="dialog">
  		  <div class="modal-dialog" role="document">
  			<div class="modal-content">
  			  <div class="modal-header">
  				<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  				<h4 class="modal-title">请选择班级</h4>
  			  </div>
  			  <div class="modal-body">
  				<form class="form-horizontal">
  				  <div class="classList">
  					<ul>
  						
  					</ul>
  				  </div>
  				</form>
  			  </div>
  			  <div class="modal-footer">
  				<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
  				<button type="button" class="btn btn-primary" id="submit" onclick="setQUestion()">确定</button>
  			  </div>
  			</div><!-- /.modal-content -->
  		  </div><!-- /.modal-dialog -->
  		</div><!-- /.modal -->
eef2f078   孙向锦   修改域名问题
124
    	<script type="text/javascript">
fd0087a8   孙向锦   添加英语语言
125
126
127
128
129
130
    		var url = "<%=basePath%>" ;
    		$('.date-picker').datepicker({
  				autoclose: true,
  				todayHighlight: true,
  			});
  			var view = "查看" ;
eef2f078   孙向锦   修改域名问题
131
    	</script>
757dfed6   孙向锦   样例报表
132
   
b638e17a   jack   1.英文翻译(三)
133
134
  	<script src="../static/js/jquery.min.js"></script>
  	<script src="../static/js/bootstrap.min.js" ></script>
757dfed6   孙向锦   样例报表
135
136
  	<script src="../static/ace/js/date-time/bootstrap-datepicker.js"></script>
  	<script src="../static/ace/js/bootbox.js"></script>
ff7ab13e   孙向锦   修复一些小bug
137
  	<script src="../static/js/teach_paper.js?a=2"></script>
c617106f   孙向锦   添加即时测功能
138
  </html>