1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <script type="text/javascript">
-
- var exchangeHouseIntent_detail_load = function(id){
-
- $.ajax({
- type: "post",//使用get方法访问后台
- dataType: "json",//返回json格式的数据
- url: "exchangeHouseIntentAction_findById",//要访问的后台地址
- data: "exchangeHouseIntent.id="+id,//要发送的数据
- complete :function(){$("#load").hide();},//AJAX请求完成时隐藏loading提示
- success: function(msg){//msg为返回的数据,在这里做数据绑定
- $("#securityPersonIdCard_detail").text(msg.obj.securityPerson.idCard);
- $("#securityPersonName_detail").text(msg.obj.securityPerson.name);
- $("#securityPersonPhone_detail").text(msg.obj.securityPerson.phone);
- $("#securityNum_detail").text(msg.obj.securityPerson.securityNum);
- $("#houseAddress_detail").text(msg.obj.house.address);
- $("#communitieNames_detail").text(msg.obj.communitieNames);
- $("#houseArea_detail").text(msg.obj.house.area);
-
- var garageArea = msg.obj.house.garageAreava;
- if(garageArea == null){
- garageArea = 0;
- }
- $("#garageArea_detail").text(garageArea);
- $("#exchangeReason_detail").text(msg.obj.exchangeReason);
- }
- });
- }
- </script>
- <form id="detailExchangeHouseIntentForm" method="post">
- <table class="mytable" style="width:100%;">
- <tr>
- <th colspan="4">换房意向人员登记信息</th>
- </tr>
- <tr>
- <th width="20%">身份证号</th>
- <td width="30%">
- <span id="securityPersonIdCard_detail" ></span>
- </td>
- <th width="20%">姓名</th>
- <td width="30%">
- <span id="securityPersonName_detail" ></span>
- </td>
- </tr>
- <tr>
- <th>联系电话</th>
- <td>
- <span id="securityPersonPhone_detail" ></span>
- </td>
-
- <th>保障人口数量</th>
- <td >
- <span id="securityNum_detail" ></span>
- </td>
- </tr>
- <tr>
- <th>房源面积</th>
- <td>
- <span id="houseArea_detail" ></span>
- </td>
- <th>车库面积</th>
- <td>
- <span id="garageArea_detail" ></span>
- </td>
- </tr>
- <tr>
- <th>现住房源地址</th>
- <td colspan="3">
- <span id="houseAddress_detail" ></span>
- </td>
- </tr>
-
- <tr>
- <th>意向房源小区</th>
- <td colspan="3">
- <span id="communitieNames_detail" ></span>
- </td>
- </tr>
-
- <tr>
- <th >换房原因</th>
- <td colspan="3">
- <span id="exchangeReason_detail" ></span>
- </th>
- </tr>
-
- </table>
- </form>
|