cff092dec0b75061984273f7236c2fcfe69d9cd6.svn-base
3.3 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<%@ 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;
}
function gobackc(){
var url = "${ctx}/reg/base/regBaseC/list?ZID=${ZID}&XMMC=${XMMC}";
window.location = url;
}
</script>
</head>
<body>
<ul class="nav nav-tabs">
<li class="active"><a href="#">户信息列表</a></li>
</ul>
<%--
<form:form id="searchForm" modelAttribute="regBaseH" action="${ctx}/reg/base/regBaseH/" method="post" class="breadcrumb form-search">
<input id="pageNo" name="pageNo" type="hidden" value="${fwpage.pageNo}"/>
<input id="pageSize" name="pageSize" type="hidden" value="${fwpage.pageSize}"/>
<ul class="ul-form">
<li><label>不动产单元号:</label>
<form:input path="bdcdyh" htmlEscape="false" maxlength="28" class="input-medium"/>
</li>
<li><label>房屋编码:</label>
<form:input path="fwbm" htmlEscape="false" maxlength="26" class="input-medium"/>
</li>
<li class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></li>
<li class="btns"><input id="btnCancel" class="btn" type="button" value="返回层" onclick="gobackc()"/></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>
<%--
<th>户型 户型字典表</th>
<th>户型结构</th>
<th>更新时间</th>
--%>
<shiro:hasPermission name="reg:base:regBaseH:edit"><th>变更操作</th></shiro:hasPermission>
</tr>
</thead>
<tbody>
<c:forEach items="${fwpage.list}" var="regBaseH">
<tr>
<td><a href="${ctx}/reg/base/regBaseH/form?id=${regBaseH.id}&VIEWS=1">
${regBaseH.bdcdyh}
</a></td>
<td>
${regBaseH.fwbm}
</td>
<td>
${regBaseH.ysdm}
</td>
<td>
${regBaseH.zrzh}#
</td>
<%--
<td>
${regBaseH.ljzh}
</td>
--%>
<td>
${SJC}
</td>
<td>
${regBaseH.zl}
</td>
<td>
${fns:getDictLabel(regBaseH.mjdw, 'reg_bus_mjdw', '')}
</td>
<td>
${regBaseH.sjcs}
</td>
<td>
${regBaseH.hh}
</td>
<td>
${regBaseH.shbw}
</td>
<%--
<td>
${fns:getDictLabel(regBaseH.hx, 'reg_bus_hx', '')}
</td>
<td>
${fns:getDictLabel(regBaseH.hxjg, 'reg_bus_hxjg', '')}
</td>
<td>
<fmt:formatDate value="${regBaseH.updateDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
</td>
--%>
<shiro:hasPermission name="reg:base:regBaseH:edit"><td>
<a href="${ctx}/reg/base/regBaseH/form?id=${regBaseH.id}">修改</a>
</td></shiro:hasPermission>
</tr>
</c:forEach>
</tbody>
</table>
<%--
<div class="pagination">${fwpage}</div>
--%>
</body>
</html>