relatedCase.jsp
3.66 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
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
100
101
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<%
String contextPath = request.getContextPath();
String title="";
if(request.getParameter("title")!=null){
title = java.net.URLDecoder.decode(request.getParameter("title"), "UTF-8");
}
%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>相关资料</title>
<jsp:include page="projectinclude.jsp"></jsp:include>
<link href="../../css/fulltextRetrieval/search-list.css" rel="stylesheet" />
<script src="../../common/js/calculateTime.js"></script>
<script src="../../js/fulltextRetrieval/search.js"></script>
<script src="../../libs/jquery/jquery.dotdotdot.min.js"></script>
<!--<script src="../../js/projecttask/relatedCase.js"></script>-->
<script src="../../common/js/resourceAuthory.js"></script>
<script src="../../common/js/global/global.modelctls.js"></script>
<script src="../../libs/jquery/jquery.dotdotdot.min.js"></script>
<script src="../../js/common.js"></script>
<script src="../../common/js/global/global.localStorage.js"></script>
<script src="../../libs/layui/2.2.5/layui.js"></script>
<link href="../../libs/layui/2.2.5/css/layui.css" rel="stylesheet" />
<script src="../../js/projecttask/common.js"></script>
</head>
<style type="text/css">
a em {
font-size: 18px;
}
em {
font-style: normal;
color: #c00;
}
</style>
<script type="text/javascript">
var host = window.location.host;
var global = global || {};
global = global || {};
global.attachmentDetail = "http://" + host + "/frontweb/view/previewAttachment.jsp";
global.documentDetail = "http://" + host + "/frontweb/view/officedocument/form/";
global.approveDetail = "http://" + host + "/frontweb/view/projecttask/detailproject.jsp";
global.archiveDetail = "http://" + host + "/frontweb/view/archiveManager/queryArchive2.jsp";
global.meetingDetail = "http://" + host + "/frontweb/view/meeting/meetingProject.jsp";
global.contextPath = "/frontweb";
global.usermessage = "http://" + host + "/cmp-model-website/mvc/user/loginInfo.do"
</script>
<script>
var relevant = function(length){
if(length > 0){
$("#mCSB_1_container").css("height","");
$("#centerFooter").removeAttr("style"); //ie,ff均支持
$('#centerFooter').css({"text-align": "center","margin-top": "100px"});
}else{
$("#mCSB_1_container").css("height","100%");
$("#centerFooter").removeAttr("style"); //ie,ff均支持
$("#centerFooter").css({"position":"absolute", "left":"46%", "bottom":"0px"});
$("#msg").css({"position":"absolute","left":"0px","right":"0px","top":"50%"});
}
}
</script>
<body>
<div id="bodycontent">
<!-- 附件上传和预览变量隐藏域 -->
<div>
</div>
<input id="searchInput" type="text" hidden="hidden" value="<%=title%>"/>
<div class="div-search-list">
<div class="s_tag" style="margin-left:0px">
<div id="tag">
<ul>
<li id="ALL" class="tag_active">
全部
<input type="hidden" value="">
</li>
<li id="APPROVE" class="">审批<input type="hidden" value="SP"></li>
<li id="DOCUMENT" class="">公文<input type="hidden" value="GW"></li>
<li id="ATTACHMENT" class="">附件<input type="hidden" value="FJ"></li>
<li id="MEETING" class="">会议<input type="hidden" value="HY"></li>
</ul>
</div>
</div>
<ul id="dataTable" class="ul_data" style="margin-top: 20px">
</ul>
<div id="layPage" style="margin-left: 165px"></div>
<div id="msg" style="position: absolute; left: 0px; right: 0px; top: 60%;display:none">
<div class="null_content">未搜索到相关信息...</div>
</div>
</div>
<jsp:include page="/common/jsp/footer.jsp"></jsp:include>
</div>
</body>
</html>