confirmDetail.jsp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="s" uri="/struts-tags" %>
  3. <script type="text/javascript">
  4. /**小区名称*/
  5. var communityNameFormatter = function(value , row , index){
  6. return row.house.communityName ;
  7. };
  8. /**居住地点*/
  9. var addressFormatter = function(value , row , index){
  10. return row.house.address ;
  11. };
  12. /**房号*/
  13. var houseNumberFormatter = function(value , row , index){
  14. return row.house.houseNumber ;
  15. };
  16. /**面积*/
  17. var areaFormatter = function(value , row , index){
  18. return row.house.area ;
  19. };
  20. </script>
  21. <table class="mytable" style="width: 100%;">
  22. <tr>
  23. <th width="20%">标题</th>
  24. <td width="80%" colspan="3" style="width: 100%">
  25. <span id="title_detail_1"></span>
  26. </td>
  27. </tr>
  28. <tr>
  29. <th width="20%">业务时间</th>
  30. <td width="30%">
  31. <span id="businessDate_detail_1"></span>
  32. </td>
  33. <th width="20%">业务人</th>
  34. <td width="30%">
  35. <span id="businessUserName_detail_1"></span>
  36. </td>
  37. </tr>
  38. <tr>
  39. <th>是否接收</th>
  40. <td colspan="3">
  41. <span id="confirm_detail_1"></span>
  42. </td>
  43. </tr>
  44. <tr>
  45. <th>备注</th>
  46. <td colspan="3">
  47. <span id="remark_detail_1"></span>
  48. </td>
  49. </tr>
  50. </table>
  51. <table id="chooseHouseInfo_detail_1">
  52. <thead>
  53. <tr>
  54. <th data-options="field:'communityName',width:150,formatter:communityNameFormatter">小区名称</th>
  55. <th data-options="field:'address',width:200,formatter:addressFormatter">居住地点</th>
  56. <th data-options="field:'houseNumber',width:40,formatter:houseNumberFormatter">房号</th>
  57. <th data-options="field:'area',width:60,formatter:areaFormatter">面积</th>
  58. </tr>
  59. </thead>
  60. </table>