12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib prefix="s" uri="/struts-tags" %>
- <form id="addCommunityForm" method="post">
- <table class="mytable" style="width: 100%;">
- <tr>
- <th width="20%">所属县区</th>
- <td width="30%">
- <select id="area_add" 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_add" name="community.name">
- </td>
- </tr>
- <tr>
- <th>小区简称</th>
- <td>
- <input class="easyui-validatebox" required="true" id="abbreviation_add" name="community.abbreviation">
- </td>
- <th>租金单价<br />(元/㎡•月)</th>
- <td>
- <input class="easyui-numberbox" required="true" id="price_add" name="community.price" precision="2">
- </td>
- </tr>
- <tr>
- <th>车库单价<br />(元/㎡•月)</th>
- <td>
- <input class="easyui-numberbox" required="true" id="garagePrice_add" name="community.garagePrice" precision="2">
- </td>
- <th>低保补贴<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="btprice1_add" name="community.btprice1"></td>
- </tr>
- <tr>
- <th>低收入补贴<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="btprice2_add" name="community.btprice2"></td>
- <th>中低收入补贴<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="btprice3_add" name="community.btprice3"></td>
- </tr>
- <tr>
- <th>低保实收<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="ssprice1_add" name="community.ssprice1"></td>
- <th>低收入实收<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="ssprice2_add" name="community.ssprice2"></td>
- </tr>
- <tr>
- <th>中低收入实收<br />(元/㎡•月)</th>
- <td><input type="text" class="easyui-numberbox" required="true" id="ssprice3_add" name="community.ssprice3"></td>
- <th>市场租金<br />(元/㎡•月)</th>
- <td><input class="easyui-numberbox" required="true" type="text" id="marketRent_add" name="community.marketRent"></td>
- </tr>
- <tr>
- <th>小区地址</th>
- <td colspan="3">
- <input class="easyui-validatebox" required="true" id="address_add" name="community.address" style="width: 400px;">
- </td>
- </tr>
- <tr>
- <th>物管联系人</th>
- <td>
- <input class="easyui-validatebox" id="contacts_add" name="community.contacts">
- </td>
- <th>物管联系人手机</th>
- <td>
- <input class="easyui-validatebox" id="phone_add" name="community.phone">
- </td>
- </tr>
- <tr>
- <th>备注</th>
- <td colspan="3">
- <textarea rows="4" cols="" style="width: 100%" name="community.remark" id="remark_id"></textarea>
- </td>
- </tr>
- </table>
- </form>
|