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.
|
|
|
|
<%@ 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">
|
|
|
|
|
<div class="result-content">
|
|
|
|
|
<form action="/house01/user_xgtwo" method="post" id="myform" name="myform" onsubmit = "return checkForm(this)">
|
|
|
|
|
<table class="insert-tab" width="100%">
|
|
|
|
|
<input type = "hidden" name="houseid" value="${house.house_id}">
|
|
|
|
|
<input type = "hidden" name="housename" value="${house.house_name}">
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
|
|
|
|
<th><i class="require-red">*</i>类型:</th>
|
|
|
|
|
<td>
|
|
|
|
|
<input class="common-text required" id="title" name="house_type" onfocus="FocusItem(this)" onblur="CheckItem(this)" size="50" value="${house.house_type }" type="text">
|
|
|
|
|
<span></span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th><i class="require-red">*</i>大小(平方米):</th>
|
|
|
|
|
<td>
|
|
|
|
|
<input class="common-text required" id="title" name="house_size" onfocus="FocusItem(this)" onblur="CheckItem(this)" size="50" value="${house.house_size}" type="text">
|
|
|
|
|
<span></span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th><i class="require-red">*</i>地址:</th>
|
|
|
|
|
<td>
|
|
|
|
|
<input class="common-text required" id="title" name="address" onfocus="FocusItem(this)" onblur="CheckItem(this)" size="50" value="${house.address }" type="text">
|
|
|
|
|
<span></span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th><i class="require-red">*</i>价格(元/月):</th>
|
|
|
|
|
<td>
|
|
|
|
|
<input class="common-text required" id="title" name="house_price" onfocus="FocusItem(this)" onblur="CheckItem(this)" size="50" value="${house.price }" type="text">
|
|
|
|
|
<span></span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th></th>
|
|
|
|
|
<td>
|
|
|
|
|
<input class="btn btn-primary btn6 mr10" value="修改" type="submit">
|
|
|
|
|
<input class="btn btn6" onClick="history.go(-1)" value="返回" type="button">
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody></table>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<!--/main-->
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|