| 6429ab88  孙向锦
 
remove | 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"%>
  <%
  	String path = request.getContextPath();
  	String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  %>
  <!DOCTYPE html>
  <html lang="en">
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>保存结果</title>
  <base href="<%=basePath%>">
  <meta name="description" content="overview & stats" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  
  <script type="text/javascript" src="static/js/jquery-1.7.2.js"></script>
 | 
| f4a73594  jack
 
1.增加班级统计报表和导出 | 18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 |   <style type="text/css">
  	#zhongxin{
  		text-align:center;
  		padding-top:50px;
  	}
  	.fail{
  		text-align:center;
  		margin-bottom:-30px;
  	}
  	.fail p{
  		font-size:16px;
  		color:#ff006a;
  		font-weight:bolder;
  	}
  </style>
 | 
| 6429ab88  孙向锦
 
remove | 33
34 |   </head>
  <body>
 | 
| f4a73594  jack
 
1.增加班级统计报表和导出 | 35
36
37
38
39
40
41 |   	<c:if test="${state =='fail'}">
  		<div class="fail">
  		<img src="static/images/fail.png" width="100px" />
  		
  		<p>导入失败</p>
  		</div>
  	</c:if>
 | 
| a2414076  孙向锦
 
修改谢曲提交过来的bug | 42 |   	<div id="zhongxin">${msg}</div>
 | 
| f4a73594  jack
 
1.增加班级统计报表和导出 | 43 |   	
 | 
| 6429ab88  孙向锦
 
remove | 44
45
46
47
48
49 |   	<script type="text/javascript">
  		var msg = "${msg}";
  		if(msg=="success" || msg==""){
  			document.getElementById('zhongxin').style.display = 'none';
  			window.top.modal.remove();
  		}else{
 | 
| a2414076  孙向锦
 
修改谢曲提交过来的bug | 50 |   		//	window.top.modal.remove();
 | 
| 6429ab88  孙向锦
 
remove | 51
52
53
54 |   		}
  	</script>
  </body>
  </html>
 |