23fa7fc446975f3b2358c0de5be0df9d9a466b03.svn-base
1.04 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
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
<title>历史记录</title>
<meta name="decorator" content="default"/>
<script type="text/javascript" >
$(document).ready(function() {});
function page(n,s){
$("#pageNo").val(n);
$("#pageSize").val(s);
$("#searchForm").submit();
return false;
}
</script>
</head>
<body>
<fieldset>
<table id="contentTable" class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th>业务编号</th>
<th>业务类型</th>
<th>权利人</th>
</tr>
</thead>
<tbody>
<c:forEach items="${page.list}" var="regBusBdcqzsdjxx">
<tr>
<td>
${regBusBdcqzsdjxx.ywh}
</td>
<td>
${fns:getDictLabel(regBusBdcqzsdjxx.djlx, 'reg_bus_djxl', '')}
</td>
<td>
${regBusBdcqzsdjxx.qlgyr}
</td>
</tr>
</c:forEach>
</tbody>
</table>
<div class="pagination">${page}</div>
</fieldset>
</body>
</html>