search-list.jsp
4.53 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
102
103
104
105
106
107
108
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<%
String contextPath = request.getContextPath();
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath();
String search =java.net.URLDecoder.decode(request.getParameter("text"),"UTF-8") ;
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>搜索结果</title>
<%-- <jsp:include page="../jspinc/inceasyui.jsp"></jsp:include> --%>
<link href="../assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="../assets/css/subpage/iframe-content.css" rel="stylesheet" />
<link href="../assets/css/common.css" rel="stylesheet" />
<link href="../assets/css/home-content/search-list.css" rel="stylesheet" />
<script src="../assets/jquery/jquery.min.js"></script>
<!-- 滚动条 -->
<link href="../assets/jquery/jquery.mCustomScrollbar.css" rel="stylesheet" />
<script src="${pageContext.request.contextPath }/assets/js/pagging.js"></script>
<script src="../assets/jquery/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="../assets/jquery/layer/layer.js"></script>
<script src="search-list.js"></script>
<script src="../assets/js/homeContent/search.js"></script>
<script src="../jslib/jquery.dotdotdot.min.js"></script>
<style type="text/css">
.searchQuery{
width: 718px;
height: 50px;
background: white;
margin-left: 125px;
}
#searchInput{
border: none;
width: 640px;
height: 50px;
margin-left: 20px;
font-size: 14px;
}
</style>
</head>
<body>
<div id="bodycontent">
<div class="container-fluid">
<div class="seachheadbg shadow-z-1 row">
<div class="headbg-logo col-xs-12">
<!-- <img class="div-head-title mCS_img_loaded" src="../assets/images/index/title03.png"> -->
<img class="div-head-title mCS_img_loaded documentFormDetail" src="../image/index/title05_xian.png" style="margin-top: 0px;">
<!-- <span class="ghjbz">图文一体化办公系统</span> -->
</div>
</div>
</div>
<!-- 附件上传和预览变量隐藏域 -->
<div>
<%-- <input id="fileadress" type="hidden" value="<%=GlobalContextHolder.getProperty("fileadress", "")%>" /> --%>
<%-- <input id="fileservice" type="hidden" value="<%=GlobalContextHolder.getProperty("fileservice", "")%>" /> --%>
<%-- <input id="docviewservice" type="hidden" value="<%=GlobalContextHolder.getProperty("docviewservice", "")%>" /> --%>
<%-- <input id="esserver" type="hidden" value="<%=GlobalContextHolder.getProperty("esserver", "")%>" /> --%>
</div>
<div class="shadow-z-1" style="width:100%;height:150px;background:#f8f8f8;padding: 20px;">
<!-- <div style="margin-left:125px;"> -->
<div class="searchQuery shadow-z-1">
<input id="searchInput" name="txtAll" type="text" value="<%=search%>" placeholder="在这里输入条件查询" />
<img id="searchbtn" src="../assets/images/subpage/icon-search.png" style="width:32px;float:right;margin-right:20px;margin-top:10px;" onclick="searchlist();"/>
</div>
<div class="s_tag">
<div id="tag">
<ul>
<li class="tag_active">
全部
<input type="hidden" value="">
</li>
<li>公文<input type="hidden" value="GW"></li>
<li>附件<input type="hidden" value="FJ"></li>
<li>会议<input type="hidden" value="HY"></li>
<li>审批<input type="hidden" value="SP"></li>
<li>档案<input type="hidden" value="DA"></li>
</ul>
</div>
</div>
<div class="clearboth"></div>
<div style="margin-left:145px;margin-top: 28px;width:650px;">
<div>找到约<span id="count"></span>条相关信息</div>
<ul class="ul_data" style="margin-top: 20px;padding: 0px;list-style: none;">
</ul>
<div class="nav-page" style="width: 850px; margin: 0 auto;margin-top:40px;float:left;">
<div class="head-page">
共<span id="total_records"></span>条,共<span id="total_page"></span>页
</div>
<nav>
<ul class="pagination">
</div>
<div id="msg">
<div style="text-align:center;margin-top:50px;color:#b9b4b4;font-size:16px;">未搜索到相关信息</div>
</div>
</div>
<!-- </div> -->
</div>
<div class="clearboth"></div>
<jsp:include page="/common/jsp/footer.jsp"></jsp:include>
</div>
</body>
</html>