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.
58 lines
2.3 KiB
58 lines
2.3 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">
|
|
<div class="result-content">
|
|
<form action="/jscss/admin/design/add" method="post" id="myform" name="myform" enctype="multipart/form-data">
|
|
<table class="insert-tab" width="100%">
|
|
<tbody>
|
|
<tr>
|
|
<th>房子编号:</th>
|
|
<td>${house.house_id}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>类型:</th>
|
|
<td>${house.house_type}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>大小(平方米):</th>
|
|
<td>${house.house_size}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>地址:</th>
|
|
<td>${house.address}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>房主姓名:</th>
|
|
<td>${house.house_name}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>联系电话:</th>
|
|
<td>${house.house_phone}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>价格(元/月):</th>
|
|
<td>${house.price}</td>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<td>
|
|
<a class="link-update" href="admin_guanli">返回</a>
|
|
</td>
|
|
</tr>
|
|
</tbody></table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<!--/main-->
|
|
</div>
|
|
</body>
|
|
</html> |