Commit b4415838 authored by 赵桢's avatar 赵桢

默认列表

parent 7f0300e5
......@@ -170,7 +170,7 @@
<%-- href="<%=request.getContextPath()%>/goto/space/questionnaire_information"--%>
<%-- >2022年天津市高校众创空间绩效评估</a></li>--%>
<li><a class="J_menuItem"
href="<%=request.getContextPath()%>/goto/space/questionnaire_Administration_Tnews"
href="<%=request.getContextPath()%>/goto/education/questionnaire_Administration_Tnew"
>2022年天津市高校众创空间绩效评估</a></li>
</ul>
</li>
......
<%@ page language="java" contentType="text/html" pageEncoding="utf-8" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<title>众创空间</title>
<link rel="shortcut icon" href="favicon.ico">
<link href="<%=request.getContextPath()%>/res/css/bootstrap.min.css?v=3.3.6" rel="stylesheet">
<link href="<%=request.getContextPath()%>/res/css/font-awesome.css?v=4.4.0" rel="stylesheet">
<link href="<%=request.getContextPath()%>/res/css/plugins/dataTables/dataTables.bootstrap.css" rel="stylesheet">
<link href="<%=request.getContextPath()%>/res/css/plugins/datapicker/datepicker3.css" rel="stylesheet">
<link href="<%=request.getContextPath()%>/res/css/animate.css" rel="stylesheet">
<link href="<%=request.getContextPath()%>/res/css/style.css?v=4.1.0" rel="stylesheet">
<link href="<%=request.getContextPath()%>/res/css/plugins/iCheck/custom.css" rel="stylesheet">
<link href="<%=request.getContextPath()%>/res/css/plugins/sweetalert/sweetalert.css" rel="stylesheet">
<style type="text/css">
.td-class {
width: 200px;
border: 0;
}
.bigLabel {
width: 100%;
color: #333;
font-size: 16px;
padding-left: 80px;
margin: 30px 0
}
.grayTip {
color: #666666;
font-size: 12px;
margin: 10px 0
}
.th-class {
width: 200px;
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.th-class_noNeed {
display: inline-block;
width: 150px;
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.th-noNeed_text {
display: inline-block;
white-space: nowrap;
width: 48px;
}
.td-button {
width: 48px;
}
.table-class {
width: 1000px;
}
.cover {
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 160px;
height: 130px;
background-color: rgba(0, 0, 0, .3);
display: none;
line-height: 125px;
text-align: center;
cursor: pointer;
}
.cover .delbtn {
color: red;
font-size: 20px;
}
.question_label {
width: 80%;
font-size: 18px;
margin-bottom: 15px;
}
</style>
</head>
<body class="gray-bg">
<script type="text/javascript">
var webroot = '<%=request.getContextPath()%>/';
var createId = '<%=request.getSession().getAttribute("realID")%>';
</script>
<div style="width: 100%;height: 100%" id="iframe">
</div>
<!-- 全局js -->z
<script src="<%=request.getContextPath()%>/res/js/jquery.min.js?v=2.1.4"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.js"></script>
<script src="<%=request.getContextPath()%>/res/js/bootstrap.min.js?v=3.3.6"></script>
<script src="<%=request.getContextPath()%>/res/js/plugins/jeditable/jquery.jeditable.js"></script>
<script src="<%=request.getContextPath()%>/res/js/plugins/highlight/highlight.js"></script>
<script src="<%=request.getContextPath()%>/res/js/plugins/sweetalert/sweetalert.min.js"></script>
<!-- layer javascript -->
<script src="<%=request.getContextPath()%>/res/js/plugins/layer/layer.min.js"></script>
<script src="<%=request.getContextPath()%>/res/js/plugins/dataTables/dataTables.bootstrap.js"></script>
<script>
$(document).ready(function (){
//获取token里面的内容
<%
Cookie[] cookies = request.getCookies();
String SESSION = "";
for(int i = 0; i < cookies.length; i++) {
if ("SESSION".equals(cookies[i].getName())) {
SESSION = cookies[i].getValue();
}
}
request.setAttribute("SESSION", SESSION);
%>
var url="http://localhost:8081/#/one?session=<%=request.getAttribute("SESSION")%>"
var iframe=$('<iframe width="100%" height="100%" src="'+url+'"></iframe>')
$("#iframe").append(iframe)
})
</script>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment