communityUpdate.jsp 3.3 KB

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