0656ae160559c41ea7455785d08ff6801e09a606.svn-base
3.12 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
<%@ 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>
<ul class="nav nav-tabs">
<li class="active"><a href="${ctx}/reg/bus/regBusGd/list?ywh=${ywh}">归档信息列表</a></li>
<c:if test="${empty LISTVIEWS}">
<c:if test="${ised ne '1'}">
<shiro:hasPermission name="reg:bus:regBusGd:edit"><li><a href="${ctx}/reg/bus/regBusGd/form?ywh=${ywh}&YSDM=2004070000">归档信息添加</a></li></shiro:hasPermission>
</c:if>
</c:if>
</ul>
<form:form id="searchForm" modelAttribute="regBusGd" action="${ctx}/reg/bus/regBusGd/list?LISTVIEWS=1&ywh=${ywh}" method="post" class="breadcrumb form-search">
<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
<ul class="ul-form">
<li><label>业务号:</label>
<form:input path="ywh" htmlEscape="false" maxlength="20" class="input-medium"/>
</li>
<li class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></li>
<li class="clearfix"></li>
</ul>
</form:form>
<sys:message content="${message}"/>
<table id="contentTable" class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th>业务号</th>
<th>要素代码</th>
<th>登记大类</th>
<th>登记小类</th>
<th>坐落</th>
<th>权证号码</th>
<th>文件件数</th>
<th>总页数</th>
<th>归档人员</th>
<th>归档时间</th>
<th>备注</th>
<c:if test="${empty LISTVIEWS}">
<shiro:hasPermission name="reg:bus:regBusGd:edit"><th>操作</th></shiro:hasPermission>
</c:if>
</tr>
</thead>
<tbody>
<c:forEach items="${page.list}" var="regBusGd">
<tr>
<td><a href="${ctx}/reg/bus/regBusGd/form?id=${regBusGd.id}&VIEWS=1&xg=1">
${regBusGd.ywh}
</a></td>
<td>
${regBusGd.ysdm}
</td>
<td>
${fns:getDictLabel(regBusGd.djdl, 'reg_bus_djlx', '')}
</td>
<td>
${fns:getDictLabel(regBusGd.djxl, 'reg_bus_djxl', '')}
</td>
<td>
${regBusGd.zl}
</td>
<td>
${regBusGd.qzhm}
</td>
<td>
${regBusGd.wjjs}
</td>
<td>
${regBusGd.zys}
</td>
<td>
${regBusGd.gdry}
</td>
<td>
<fmt:formatDate value="${regBusGd.gdsj}" pattern="yyyy-MM-dd"/>
</td>
<td>
${regBusGd.bz}
</td>
<c:if test="${empty LISTVIEWS}">
<shiro:hasPermission name="reg:bus:regBusGd:edit"><td>
<a href="${ctx}/reg/bus/regBusGd/form?id=${regBusGd.id}">修改</a>
<a href="${ctx}/reg/bus/regBusGd/delete?id=${regBusGd.id}" onclick="return confirmx('确认要删除该归档信息吗?', this.href)">删除</a>
</td></shiro:hasPermission>
</c:if>
</tr>
</c:forEach>
</tbody>
</table>
<div class="pagination">${page}</div>
</body>
</html>