communityAdd.jsp 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="s" uri="/struts-tags" %>
  3. <form id="addCommunityForm" method="post">
  4. <table class="mytable" style="width: 100%;">
  5. <tr>
  6. <th width="20%">所属县区</th>
  7. <td width="30%">
  8. <select id="area_add" name="community.area" class="easyui-validatebox" required="true" style="width: 172px">
  9. <option value="">请选择</option>
  10. </select>
  11. </td>
  12. <th width="20%">小区名称</th>
  13. <td width="30%">
  14. <input class="easyui-validatebox" required="true" id="name_add" name="community.name">
  15. </td>
  16. </tr>
  17. <tr>
  18. <th>小区简称</th>
  19. <td>
  20. <input class="easyui-validatebox" required="true" id="abbreviation_add" name="community.abbreviation">
  21. </td>
  22. <th>租金单价<br />(元/㎡•月)</th>
  23. <td>
  24. <input class="easyui-numberbox" required="true" id="price_add" name="community.price" precision="2">
  25. </td>
  26. </tr>
  27. <tr>
  28. <th>车库单价<br />(元/㎡•月)</th>
  29. <td>
  30. <input class="easyui-numberbox" required="true" id="garagePrice_add" name="community.garagePrice" precision="2">
  31. </td>
  32. <th>低保补贴<br />(元/㎡•月)</th>
  33. <td><input class="easyui-numberbox" required="true" type="text" id="btprice1_add" name="community.btprice1"></td>
  34. </tr>
  35. <tr>
  36. <th>低收入补贴<br />(元/㎡•月)</th>
  37. <td><input class="easyui-numberbox" required="true" type="text" id="btprice2_add" name="community.btprice2"></td>
  38. <th>中低收入补贴<br />(元/㎡•月)</th>
  39. <td><input class="easyui-numberbox" required="true" type="text" id="btprice3_add" name="community.btprice3"></td>
  40. </tr>
  41. <tr>
  42. <th>低保实收<br />(元/㎡•月)</th>
  43. <td><input class="easyui-numberbox" required="true" type="text" id="ssprice1_add" name="community.ssprice1"></td>
  44. <th>低收入实收<br />(元/㎡•月)</th>
  45. <td><input class="easyui-numberbox" required="true" type="text" id="ssprice2_add" name="community.ssprice2"></td>
  46. </tr>
  47. <tr>
  48. <th>中低收入实收<br />(元/㎡•月)</th>
  49. <td><input type="text" class="easyui-numberbox" required="true" id="ssprice3_add" name="community.ssprice3"></td>
  50. <th>市场租金<br />(元/㎡•月)</th>
  51. <td><input class="easyui-numberbox" required="true" type="text" id="marketRent_add" name="community.marketRent"></td>
  52. </tr>
  53. <tr>
  54. <th>小区地址</th>
  55. <td colspan="3">
  56. <input class="easyui-validatebox" required="true" id="address_add" name="community.address" style="width: 400px;">
  57. </td>
  58. </tr>
  59. <tr>
  60. <th>物管联系人</th>
  61. <td>
  62. <input class="easyui-validatebox" id="contacts_add" name="community.contacts">
  63. </td>
  64. <th>物管联系人手机</th>
  65. <td>
  66. <input class="easyui-validatebox" id="phone_add" name="community.phone">
  67. </td>
  68. </tr>
  69. <tr>
  70. <th>备注</th>
  71. <td colspan="3">
  72. <textarea rows="4" cols="" style="width: 100%" name="community.remark" id="remark_id"></textarea>
  73. </td>
  74. </tr>
  75. </table>
  76. </form>