loadProjectDetail.jsp
1.56 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
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<%
String contextPath = request.getContextPath();
%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>请输入报建编号</title>
<jsp:include page="projectinclude.jsp"></jsp:include>
<script type="text/javascript" src="../../js/projecttask/loadProjectDetail.js"></script>
<style type="text/css">
input[type='radio']{
opacity: 1
}
</style>
</head>
<body style="padding: 16px;">
<div class="zySearch" id="zySearch" style=" margin-left: 5%;">
<input id="searchInput" placeholder="按项目编号搜索" type="text">
<button id="searchbtninfo" class="btn btn-info" style=" margin-top: -4px;padding-top: 3px;padding-bottom: 4px;"><!--hyh 新增 padding-top: 3px;padding-bottom: 4px; 2017/10/26 -->
<span class="glyphicon glyphicon-search"></span>查询
</button>
</div>
<!-- 流程详情 -->
<div class="container" id="flowdetail" style="margin-left: 3%;">
<table class="striped" id="flowdetaildata">
<thead>
<tr>
<th width="20%">项目编号</th>
<th width="40%">项目名称</th>
<th width="25%">建设单位</th>
<th width="15%">主办科室</th>
</tr>
</thead>
<tbody id="dealedData"> </tbody>
</table>
<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">
</nav>
</div>
</div>
</body>
</html>