You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.4 KiB
57 lines
2.4 KiB
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
pageEncoding="UTF-8"%>
|
|
<%@ include file="admin_meau.jsp" %>
|
|
<!--/sidebar-->
|
|
<div class="main-wrap">
|
|
|
|
<div class="crumb-wrap">
|
|
<div class="crumb-list"><i class="icon-font"></i><a>首页</a><span class="crumb-step">></span><a class="crumb-name" >管理操作</a><span class="crumb-step">></span><span>房子审核</span></div>
|
|
</div>
|
|
<div class="result-wrap">
|
|
<form name="myform" id="myform" method="post">
|
|
</div>
|
|
<div class="result-content">
|
|
<table class="result-tab" width="100%">
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>类型</th>
|
|
<th>大小</th>
|
|
<th>地址</th>
|
|
<th>房主</th>
|
|
<th>联系电话</th>
|
|
<th>价格</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
|
|
<c:forEach var="u" items="${admin_list}">
|
|
<tr>
|
|
<td>${u.house_id}</td>
|
|
<td>${u.house_type}</td>
|
|
<td>${u.house_size}</td>
|
|
<td>${u.address}</td>
|
|
<td>${u.house_name}</td>
|
|
<td>${u.house_phone}</td>
|
|
<td>${u.price}</td>
|
|
<td>
|
|
<a class="link-update" href="javascript:Delete('你确定要通过该房子【${u.house_id} 】信息吗?', 'admin_pase?houseid=${u.house_id}')">通过</a>
|
|
<a class="link-update" href="admin_information?id=${u.house_id}">详细</a>
|
|
</td>
|
|
</tr>
|
|
</c:forEach>
|
|
|
|
<script type="text/javascript">
|
|
function Delete(mess, url) {
|
|
if(confirm(mess)) {
|
|
location.href=url;
|
|
}
|
|
}
|
|
</script>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<!--/main-->
|
|
</div>
|
|
</body>
|
|
</html> |