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.
50 lines
2.0 KiB
50 lines
2.0 KiB
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
pageEncoding="UTF-8"%>
|
|
<%@ taglib prefix = "c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ include file="user_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="${userlist}">
|
|
<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.price}</td>
|
|
<td>${u.user_state}</td>
|
|
<td>
|
|
<a class="link-update" href="user_information?id=${u.house_id}">查看详细</a>
|
|
</td>
|
|
</tr>
|
|
</c:forEach>
|
|
|
|
</table>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<!--/main-->
|
|
</div>
|
|
</body>
|
|
</html> |