alterlog.jsp
1.41 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
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<%
String contextPath = request.getContextPath();
String projectid = request.getParameter("projectid");
%>
<!DOCTYPE html>
<html style="height:100%;width:100%;position:relative;">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
<jsp:include page="projectinclude.jsp"></jsp:include>
<script src="../../js/projecttask/alterlog.js"></script>
</head>
<body>
<!-- 日志详情 -->
<div class="container" id="alterlog" style="text-align: center;">
<input id="projectid" hidden="hidden" value="<%=projectid%>" />
<table class="striped" id="alterlogdata" style="display:none;width:100%"><!--hyh 新增 让其默认隐藏 2017、9、28 -->
<thead>
<tr>
<!-- <th>项目名称</th> -->
<th>处理人</th>
<th>字段名</th>
<th>修改前的值</th>
<th>修改后的值</th>
<th>修改日期</th>
</tr>
</thead>
<tbody id="dealedData"> </tbody>
</table>
<div class="nav-page" style="display:none;"><!--hyh 新增 让其默认隐藏 2017、9、28 -->
<div>
共<span id="total_records"></span>条,共<span id="total_page"></span>页
</div>
<nav style="cursor:pointer;">
<ul class="pagination">
</ul>
</nav>
</div>
</div>
</body>
</html>