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.

63 lines
2.7 KiB

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ 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">&gt;</span><a class="crumb-name" >用户操作</a><span class="crumb-step">&gt;</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>
<c:if test="${house.user_name == null}">
<c:if test="${house.house_name != name.user_name}">
<a class="link-update" href="user_zufang?name=${name.user_name}&id=${house.house_id}">租用</a>
</c:if>
</c:if>
<a class="link-update" href="user_bianli">返回</a>
</td>
</tr>
</tbody></table>
</form>
</div>
</div>
</div>
<!--/main-->
</div>
</body>
</html>