123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib prefix="s" uri="/struts-tags" %>
- <script type="text/javascript">
- /**小区名称*/
- var communityNameFormatter = function(value , row , index){
- return row.house.communityName ;
- };
-
- /**居住地点*/
- var addressFormatter = function(value , row , index){
- return row.house.address ;
- };
-
- /**房号*/
- var houseNumberFormatter = function(value , row , index){
- return row.house.houseNumber ;
- };
-
- /**面积*/
- var areaFormatter = function(value , row , index){
- return row.house.area ;
- };
- </script>
- <table class="mytable" style="width: 100%;">
- <tr>
- <th width="20%">标题</th>
- <td width="80%" colspan="3" style="width: 100%">
- <span id="title_detail_1"></span>
- </td>
- </tr>
- <tr>
- <th width="20%">业务时间</th>
- <td width="30%">
- <span id="businessDate_detail_1"></span>
- </td>
- <th width="20%">业务人</th>
- <td width="30%">
- <span id="businessUserName_detail_1"></span>
- </td>
- </tr>
- <tr>
- <th>是否接收</th>
- <td colspan="3">
- <span id="confirm_detail_1"></span>
- </td>
- </tr>
- <tr>
- <th>备注</th>
- <td colspan="3">
- <span id="remark_detail_1"></span>
- </td>
- </tr>
- </table>
- <table id="chooseHouseInfo_detail_1">
- <thead>
- <tr>
- <th data-options="field:'communityName',width:150,formatter:communityNameFormatter">小区名称</th>
- <th data-options="field:'address',width:200,formatter:addressFormatter">居住地点</th>
- <th data-options="field:'houseNumber',width:40,formatter:houseNumberFormatter">房号</th>
- <th data-options="field:'area',width:60,formatter:areaFormatter">面积</th>
- </tr>
- </thead>
- </table>
|