d05aea46d77488399d1668bf4a644933c0a426d3.svn-base
3.07 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
<%@ 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() {
//$("#name").focus();
$("#inputForm").validate({
submitHandler: function(form){
loading('正在提交,请稍等...');
form.submit();
},
errorContainer: "#messageBox",
errorPlacement: function(error, element) {
$("#messageBox").text("输入有误,请先更正。");
if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
error.appendTo(element.parent().parent());
} else {
error.insertAfter(element);
}
}
});
});
function winBackHxx(){
var id = $("input[type='radio']:checked").val();
window.location.href = "${ctx}/reg/base/regBaseH/mergersave?id="+id+"&CID=${CID}&YWH=${YWH}&DJLX=${DJLX}&djxxIds=${djxxIds}&dyId=${dyId}&optype=${optype}";
}
function openH(id){
window.location.href = "${ctx}/reg/base/regBaseH/mergerform?id="+id+"&CID=${CID}&YWH=${YWH}&DJLX=${DJLX}&ids=${djxxIds}";
}
</script>
</head>
<body>
<ul class="nav nav-tabs">
<li class="active"><a href="#">户信息列表</a></li>
</ul><br/>
<div class="zxdiv"><label><span class="tipinfo">请点击户信息选择按钮</span></label>
<input id="btnChose" class="btn btn-primary" type="button" onclick="javascript:winBackHxx();" value="户信息选择"/>
</div>
<sys:message content="${message}"/>
<fmt:formatNumber value="${CHMJS}" pattern="#0.##" var="formattedNumber"/>
<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>
<shiro:hasPermission name="reg:base:regBaseH:edit"><th>操作</th></shiro:hasPermission>
</tr>
</thead>
<tbody>
<c:forEach items="${page}" var="regBaseH">
<tr>
<td>
<input type="radio" name="radio_chxx" id="${regBaseH.id}" value="${regBaseH.id}"/>
</td>
<td>
${regBaseH.bdcdyh}
</td>
<td>
${regBaseH.fybh}
</td>
<td>
${regBaseH.jgzwmc}
</td>
<%-- <td>
${regBaseH.ljzh}
</td>--%>
<td>
${regBaseH.zl}
</td>
<td>
${regBaseH.scjzmj}
</td>
<td>
${regBaseH.sjcs}
</td>
<td>
${regBaseH.hh}
</td>
<td>
${regBaseH.shbw}
</td>
<td>
${regBaseH.updater}
</td>
<td>
<fmt:formatDate value="${regBaseH.updateDate}" pattern="yyyy-MM-dd"/>
</td>
<td>
<a href="#" onclick="javascript:openH('${regBaseH.id}')">查看</a>
</td>
</tr>
</c:forEach>
</tbody>
</table>
</body>
</html>