ycslList.jsp
3.41 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
132
133
134
135
136
137
<%@ 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><a href="${ctx}/ycsl/ycslJbxx/form">一窗受理信息添加</a></li>
</ul>
<form:form id="searchForm" modelAttribute="ycslJbxx" action="${ctx}/ycsl/ycslJbxx/" 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}"/>
<sys:tableSort id="orderBy" name="orderBy" value="${page.orderBy}" callback="page();"/>
<table>
<tr>
<td>房源编号 </td>
<td>
<form:input path="fybh" id="fybh" htmlEscape="false" maxlength="30" class="input-medium"/>
</td>
<td> 不动产单元号 </td>
<td>
<form:input path="bdcdyh" id="bdcdyh" htmlEscape="false" maxlength="80" class="input-medium"/>
</td>
<td> 坐落 </td>
<td>
<form:input path="zl" id="zl" htmlEscape="false" maxlength="300" class="input-medium"/>
</td>
<td class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></td>
<td class="clearfix"></td>
</tr>
</table>
</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>
</tr>
</thead>
<tbody>
<c:forEach items="${page.list}" var="ycsl">
<tr>
<td>
${ycsl.bdcdyh}
</td>
<td>
${ycsl.fybh}
</td>
<td>
${ycsl.zl}
</td>
<td>
${ycsl.zrzh}
</td>
<td>
${ycsl.tdxz}
</td>
<td>
${ycsl.fwyt}
</td>
<td>
${ycsl.fwxz}
</td>
<td>
${ycsl.fwlx}
</td>
<td>
${ycsl.jzmj}
</td>
<td>
${ycsl.cqzh}
</td>
<td>
<c:if test="${ycsl.zt ne 'start' and ycsl.zt ne 'end'}">
<a href="${ctx}/ycsl/ycslJbxx/form?id=${ycsl.id}">修改</a>
<a href="${ctx}/ycsl/ycslJbxx/delete?id=${ycsl.id}" onclick="return confirmx('确认要删除该受理的基本信息吗?', this.href)">删除</a>
</c:if>
<c:if test="${ycsl.zt eq 'start' or ycsl.zt eq 'end'}">
<a href="${ctx}/ycsl/ycslJbxx/form?id=${ycsl.id}&view=1" >已引用</a>
</c:if>
</td>
<td>
<c:if test="${ycsl.zt eq 'false'}">
<font color='red'> 推送失败 </font>
</c:if>
<c:if test="${ycsl.zt eq 'true'}">
<font color='green'> 推送成功 </font>
</c:if>
<c:if test="${ycsl.zt eq 'start'}">
办理中
</c:if>
<c:if test="${ycsl.zt eq 'end'}">
已完结
</c:if>
</td>
</tr>
</c:forEach>
</tbody>
</table>
<div class="pagination">${page}</div>
</body>
</html>