123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib prefix="s" uri="/struts-tags" %>
- <form id="updateCommunityForm" method="post">
- <input type="hidden" name="community.id" id="id_update">
- <table class="mytable" style="width: 100%;">
- <tr>
- <th width="20%">所属县区</th>
- <td width="30%">
- <select id="area_update" name="community.area" class="easyui-validatebox" required="true" style="width: 172px">
- <option value="">请选择</option>
- </select>
- </td>
- <th width="20%">小区名称</th>
- <td width="30%">
- <input class="easyui-validatebox" required="true" id="name_update" name="community.name">
- </td>
- </tr>
- <tr>
- <th>小区简称</th>
- <td>
- <input class="easyui-validatebox" required="true" id="abbreviation_update" name="community.abbreviation">
- </td>
- <th>租金单价(元/㎡)</th>
- <td>
- <input class="easyui-numberbox" required="true" id="price_update" name="community.price" precision="2">
- </td>
- </tr>
- <tr>
- <th>车库单价<br />(元/㎡•月)</th>
- <td>
- <input class="easyui-numberbox" required="true" id="garagePrice_update" name="community.garagePrice" precision="2">
- </td>
- <th>低保补贴<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="btprice1_update" name="community.btprice1" precision="2"></td>
- </tr>
- <tr>
- <th>低收入补贴<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="btprice2_update" name="community.btprice2" precision="2"></td>
- <th>中低收入补贴<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="btprice3_update" name="community.btprice3" precision="2"></td>
- </tr>
- <tr>
- <th>低保实收<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="ssprice1_update" name="community.ssprice1" precision="2"></td>
- <th>低收入实收<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="ssprice2_update" name="community.ssprice2" precision="2"></td>
- </tr>
- <tr>
- <th>中低收入实收<br />(元/㎡•月)</th>
- <td><input type="text" class="easyui-numberbox" required="true" id="ssprice3_update" name="community.ssprice3" precision="2"></td>
- <th>市场租金<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="marketRent_update" name="community.marketRent" precision="2"></td>
- </tr>
- <tr>
- <th>小区地址</th>
- <td colspan="3">
- <input class="easyui-validatebox" required="true" id="address_update" name="community.address" style="width: 400px;">
- </td>
- </tr>
- <tr>
- <th>物管联系人</th>
- <td>
- <input class="easyui-validatebox" id="contacts_update" name="community.contacts">
- </td>
- <th>物管联系人手机</th>
- <td>
- <input class="easyui-validatebox" id="phone_update" name="community.phone">
- </td>
- </tr>
- <tr>
- <th>备注</th>
- <td colspan="3">
- <textarea rows="4" cols="" style="width: 100%" name="community.remark" id="remark_update"></textarea>
- </td>
- </tr>
- </table>
- </form>
|