reportproject.jsp
4.32 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<%@ 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();
%>
<!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>
<link href="../../libs/layui/2.2.5/css/layui.css" rel="stylesheet"/>
<script src="../../libs/layui/2.2.5/layui.js"></script>
<jsp:include page="projectinclude.jsp"></jsp:include>
<script src="../../js/projecttask/reportproject.js"></script>
<script src="../../common/js/config.js"></script>
<style type="text/css">
body{
padding: 0px;
}
a:hover{
text-decoration: none;
cursor: pointer;
}
nav span {
font-size: 14px !important;
}
.div-search {
background:white;
border: 2px solid #e6e5e5;
border-radius: 4px;
margin-top: 20px;
margin-right: 10px;
width: 50%;
height: 50px;
}
.div-search input[type="text"] {
width: 95%;
height: 48px;
padding-left: 15px;
/* margin-left: 15px; */
border-width: initial;
border-style: none;
border-color: initial;
border-image: initial;
border-radius: 4px;
}
#searchInput{
width: 90%;
height: 40px;
}
.s_tag {
margin-top:20px;
margin-left:-35px;
background: #f8f8f8;
line-height: 36px;
height: 38px;
float: none;
}
#tag {
/* margin-left:100px; */
}
#tag > ul > li {
float:left;
list-style:none;
margin-right:20px;
width:100px;
text-align:center;
}
#tag > ul > li:hover {
cursor:pointer;
}
.tag_active {
border-bottom:5px solid #38f;
font-weight: bold;
color: #323232;
}
.contentList{
border-bottom: 1px solid #999;
margin-left: 40px;
margin-top: 20px;
margin-right: 40px;
}
.contentList p{
margin-bottom: 5px;
}
.nav-page{
margin-right: 40px;
margin-top:80px;
}
.div-search img:hover{
cursor: pointer;
}
</style>
</head>
<body>
<div style="width:100%;height:150px;background:#f8f8f8;padding: 20px;">
<div class="div-search" >
<input id="searchInput" name="txtAll" type="text" placeholder="搜索报表" />
<img id="searchbtn" src="../../image/projecttask/search.png" style="width: 32px;float: right;margin-right: 10px;margin-top: 7px;" onclick="searchlist();"/>
</div>
<div class="s_tag">
<div id="tag">
<ul>
<li class="tag_active">预置报表<input type="hidden" value="预置报表"></li>
<li>我的收藏<input type="hidden" id="iscreport" value="我的收藏"></li>
</ul>
</div>
</div>
</div>
<div id="reportList" style="overflow-y: auto;width: 100%;">
</div>
<div id="laypage" style="float:right; display:none"></div>
<!-- <div class="contentList"> -->
<!-- <div style="margin-bottom: 20px;"> -->
<!-- <div> -->
<!-- <a style="font-weight: bold;font-size:20px;" onclick="openDetail()">工程规划许可证统计</a> -->
<!-- <img alt="" src="../assets/images/projecttask/new.png"> -->
<!-- </div> -->
<!-- <div style="color: #888484">备注备注备注备注备注备注备注备注备注备注</div> -->
<!-- <div style="color: #888484">更新时间:2017-04-09 12:05</div> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="contentList"> -->
<!-- <div style="margin-bottom: 20px;"> -->
<!-- <div><a style="font-weight: bold;font-size:20px;">建设设计方案审批</a></div> -->
<!-- <div style="color: #888484">备注备注备注备注备注备注备注备注备注备注</div> -->
<!-- <div style="color: #888484">更新时间:2017-04-09 12:05</div> -->
<!-- </div> -->
<!-- </div> -->
<div id="msg" style="display: none;position: absolute;top: 50%;left: 50%;">
<div style="color: #b9b4b4;font-size: 20px;position: fixed;top: 50%;left: 50%;transform: translate(-50%,-50%);">没有相关数据</div>
</div>
<!-- <div class="nav-page" id="pageZero">
<div>
共<span id="total_records"></span>条,共<span id="total_page"></span>页
</div>
<nav style="cursor:pointer;">
<ul class="pagination">
</ul>
</nav>
</div> -->
</body>
</html>