alterlog.jsp 1.41 KB
<%@ 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>