commonHouseHelpOrderAdd.jsp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  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 maritalStatusObj_add = null;
  6. var maritalStatus_array_add = null;
  7. //申请保障类型
  8. var applyTypeObj_add = null;
  9. var applyType_array_add = null;
  10. //是否现房
  11. var isExistHouseObj_add = null;
  12. var isExistHouse_array_add = null;
  13. var dealNull = function(value)
  14. {
  15. if(value == ""){
  16. return 0;
  17. }
  18. else{
  19. return value;
  20. }
  21. }
  22. var countHouseMoney =function(){
  23. var securityNum = dealNull($("#securityNum_add").numberbox('getValue'));
  24. var houseArea = parseFloat(dealNull($("#houseArea_add").numberbox('getValue')));
  25. var garageArea = parseFloat(dealNull($("#garageArea_add").numberbox('getValue')));
  26. var protectArea = parseFloat(dealNull($("#protectArea_add").numberbox('getValue')));
  27. var protectRealArea = protectArea;
  28. if(houseArea < protectArea){
  29. protectRealArea = houseArea;
  30. }
  31. var protectOutArea = 0;
  32. if(houseArea > protectArea){
  33. protectOutArea = houseArea - protectArea;
  34. }
  35. $("#protectOutArea_add").numberbox('setValue', protectOutArea);
  36. var housePrice = dealNull($("#housePrice_add").numberbox('getValue'));
  37. var garagePrice = dealNull($("#garagePrice_add").numberbox('getValue'));
  38. var houseMoney = houseArea * housePrice ;
  39. var garageMoney = garageArea * garagePrice;
  40. $("#houseMoney_add").numberbox('setValue', houseMoney );
  41. $("#garageMoney_add").numberbox('setValue', garageMoney );
  42. var totalMoney = houseMoney + garageMoney;
  43. $("#totalMoney_add").numberbox('setValue', totalMoney );
  44. var govPercent = dealNull($("#govPercent_add").numberbox('getValue'));
  45. var personPercent = 100 - govPercent;
  46. $("#personPercent_add").numberbox('setValue', personPercent );
  47. var govMoney = housePrice*protectRealArea*govPercent/100;
  48. $("#govMoney_add").numberbox('setValue', govMoney );
  49. var personTotalMoney = totalMoney - govMoney;
  50. $("#personTotalMoney_add").numberbox('setValue', personTotalMoney );
  51. var personProtectMoney = housePrice*protectRealArea*personPercent/100 ;
  52. $("#personProtectMoney_add").numberbox('setValue', personProtectMoney );
  53. $("#personOutMoney_add").numberbox('setValue', personTotalMoney - personProtectMoney );
  54. }
  55. function commonHouseHelpOrder_add_load(id){
  56. $('#houseArea_add').numberbox({
  57. onChange: function () {
  58. countHouseMoney();
  59. }
  60. });
  61. $('#garageArea_add').numberbox({
  62. onChange: function () {
  63. countHouseMoney();
  64. }
  65. });
  66. $('#housePrice_add').numberbox({
  67. onChange: function () {
  68. countHouseMoney();
  69. }
  70. });
  71. $('#garagePrice_add').numberbox({
  72. onChange: function () {
  73. countHouseMoney();
  74. }
  75. });
  76. $('#govPercent_add').numberbox({
  77. onChange: function () {
  78. countHouseMoney();
  79. }
  80. });
  81. //保障类别
  82. $.ajax({
  83. type: "post",//使用post方法访问后台
  84. dataType: "json",//返回json格式的数据
  85. url: "aa10Action_listAa10All",//要访问的后台地址
  86. data:{"aa10.letter":"applyType" ,"aa10.name":"保障业务类别" },
  87. complete :function(){$("#load").hide();},//AJAX请求完成时隐藏loading提示
  88. success: function(msg){//msg为返回的数据,在这里做数据绑定
  89. if(msg.success){
  90. applyTypeObj_add = msg.obj.rows;
  91. var select_arr = [];
  92. var data = applyTypeObj_add;
  93. for(var nItem = 0; nItem < data.length; nItem++ ){
  94. select_arr.push("<option value="+data[nItem].code+">"+data[nItem].value+"</option>");
  95. }
  96. applyType_array_add = select_arr.join("");
  97. }
  98. }
  99. });
  100. //婚姻情况
  101. $.ajax({
  102. type: "post",//使用post方法访问后台
  103. dataType: "json",//返回json格式的数据
  104. url: "aa10Action_listAa10All",//要访问的后台地址
  105. data:{"aa10.letter":"maritalStatus" ,"aa10.name":"婚姻情况" },
  106. complete :function(){$("#load").hide();},//AJAX请求完成时隐藏loading提示
  107. success: function(msg){//msg为返回的数据,在这里做数据绑定
  108. if(msg.success){
  109. maritalStatusObj_add = msg.obj.rows;
  110. var select_arr = [];
  111. var data = maritalStatusObj_add;
  112. for(var nItem = 0; nItem < data.length; nItem++ ){
  113. select_arr.push("<option value="+data[nItem].code+">"+data[nItem].value+"</option>");
  114. }
  115. maritalStatus_array_add = select_arr.join("");
  116. }
  117. }
  118. });
  119. //是否现房
  120. $.ajax({
  121. type: "post",//使用post方法访问后台
  122. dataType: "json",//返回json格式的数据
  123. url: "aa10Action_listAa10All",//要访问的后台地址
  124. data:{"aa10.letter":"isExistHouse" ,"aa10.name":"是否现房" },
  125. complete :function(){$("#load").hide();},//AJAX请求完成时隐藏loading提示
  126. success: function(msg){//msg为返回的数据,在这里做数据绑定
  127. if(msg.success){
  128. isExistHouseObj_add = msg.obj.rows;
  129. var select_arr = [];
  130. var data = isExistHouseObj_add;
  131. for(var nItem = 0; nItem < data.length; nItem++ ){
  132. select_arr.push("<option value="+data[nItem].code+">"+data[nItem].value+"</option>");
  133. }
  134. isExistHouse_array_add = select_arr.join("");
  135. $("#isExistHouse_add").append(isExistHouse_array_add);
  136. }
  137. }
  138. });
  139. $.ajax({
  140. type: "post",//使用get方法访问后台
  141. dataType: "json",//返回json格式的数据
  142. url: "securityPersonAction_findById",//要访问的后台地址
  143. data: "securityPerson.id="+id,//要发送的数据
  144. complete :function(){$("#load").hide();},//AJAX请求完成时隐藏loading提示
  145. success: function(msg){//msg为返回的数据,在这里做数据绑定
  146. $("#securityPersonId_add").val(msg.obj.id);
  147. $("#name_add").text(msg.obj.name);
  148. $("#idCard_add").text(msg.obj.idCard);
  149. $("#securityPersonName_add").val(msg.obj.name);
  150. $("#securityPersonIdCard_add").val(msg.obj.idCard);
  151. var personType = "";
  152. for(var nItem = 0; nItem < personTypeObj.length; nItem++ ){
  153. if(personTypeObj[nItem].code == msg.obj.personType){
  154. personType = personTypeObj[nItem].value;
  155. }
  156. }
  157. $("#personType_add").text(personType);
  158. var maritalStatus = "";
  159. for(var nItem = 0; nItem < maritalStatusObj_add.length; nItem++ ){
  160. if(maritalStatusObj_add[nItem].code == msg.obj.maritalStatus){
  161. maritalStatus = maritalStatusObj_add[nItem].value;
  162. }
  163. }
  164. $("#maritalStatus_add").text(maritalStatus);
  165. $("#phone_add").text(msg.obj.phone);
  166. $("#company_add").text(msg.obj.company);
  167. if(msg.obj.houseRegister != undefined){
  168. $("#residence_add").text(msg.obj.houseRegister.parent.parent.name + "-" + msg.obj.houseRegister.parent.name + "-" + msg.obj.houseRegister.name);
  169. }else{
  170. $("#residence_add").text(msg.obj.accountLocation)
  171. }
  172. $("#residenceNo_add").text(msg.obj.residenceNo);
  173. $("#residenceYear_add").text(msg.obj.residenceYear);
  174. $("#securityNum_add_1").text(msg.obj.securityNum);
  175. $("#familyNum_add").text(msg.obj.familyNum);
  176. $("#avgIncome_add").text(msg.obj.avgIncome);
  177. $("#securityNum_add").numberbox('setValue', msg.obj.securityNum);
  178. $("#protectArea_add").numberbox('setValue', msg.obj.securityNum * $("#protectAvgArea_add").numberbox('getValue'));
  179. var applyType = "";
  180. for(var nItem = 0; nItem < applyTypeObj_add.length; nItem++ ){
  181. if(applyTypeObj_add[nItem].code == msg.obj.applyType){
  182. applyType = applyTypeObj_add[nItem].value;
  183. }
  184. }
  185. $("#applyType_add").text(applyType);
  186. }
  187. });
  188. $('#dg_add').datagrid({
  189. rownumbers:true,
  190. border:false,
  191. sortOrder:'desc',
  192. url:whzl.basePath + '/securityPersonAction_listSecurityPersonRelative?securityPersonId='+id,
  193. checkOnSelect:true,
  194. selectOnCheck:false,
  195. loadFilter:function(result){
  196. if(result.success){
  197. return result.obj;
  198. }else{
  199. $.messager.alert("提示",result.message);
  200. return ;
  201. }
  202. }
  203. });
  204. $.ajax({
  205. type: "post",//使用get方法访问后台
  206. dataType: "json",//返回json格式的数据
  207. async:false,
  208. url: "commonHouseHelpOrderAction_checkHouseDetail",//要访问的后台地址
  209. data: "commonHouseHelpOrder.securityPersonId="+id,//要发送的数据
  210. complete :function(){$("#load").hide();},//AJAX请求完成时隐藏loading提示
  211. success: function(msg){
  212. var checkHouseList = msg.obj;
  213. //房产信息
  214. if(checkHouseList!=null&&checkHouseList!=''){
  215. var checkHouseCount = checkHouseList.length;
  216. for(var j=0;j<checkHouseCount;j++){
  217. var $tr1= $("<tr bgcolor='white'></tr>");
  218. var $td1_1 = $("<th width='25%'>推送人</th>");
  219. var $td1_2 = $("<td width='25%'>"+checkHouseList[j].entryPerson+"</td>");
  220. var $td1_3 = $("<th width='25%'>推送时间</th>");
  221. var $td1_4 = $("<td width='25%'>"+checkHouseList[j].entryDate+"</td>");
  222. $tr1.append($td1_1);
  223. $tr1.append($td1_2);
  224. $tr1.append($td1_3);
  225. $tr1.append($td1_4);
  226. var $tr2= $("<tr></tr>");
  227. var $td2_1 = $("<th>申请人姓名</th>");
  228. var $td2_2 = $("<td>"+checkHouseList[j].name+"</td>");
  229. var $td2_3 = $("<th>申请人身份证号</th>");
  230. var $td2_4 = $("<td>"+checkHouseList[j].idCard+"</td>");
  231. $tr2.append($td2_1);
  232. $tr2.append($td2_2);
  233. $tr2.append($td2_3);
  234. $tr2.append($td2_4);
  235. $("#checkHouseTable_detail").append($tr1);
  236. $("#checkHouseTable_detail").append($tr2);
  237. if(checkHouseList[j].houseAddress!= undefined){
  238. var $tr3= $("<tr></tr>");
  239. var $td3_1 = $("<th>地址</th>");
  240. var $td3_2 = $("<td>"+checkHouseList[j].houseAddress+"</td>");
  241. var $td3_3 = $("<th>面积</th>");
  242. var $td3_4 = $("<td>"+checkHouseList[j].houseArea+"</td>");
  243. $tr3.append($td3_1);
  244. $tr3.append($td3_2);
  245. $tr3.append($td3_3);
  246. $tr3.append($td3_4);
  247. var $tr4= $("<tr></tr>");
  248. var $td4_1 = $("<th>库类型</th>");
  249. var $td4_2 = $("<td>"+checkHouseList[j].houseLibrary+"</td>");
  250. var $td4_3 = $("<th>产权证号</th>");
  251. var $td4_4 = $("<td>"+checkHouseList[j].propertyCard+"</td>");
  252. $tr4.append($td4_1);
  253. $tr4.append($td4_2);
  254. $tr4.append($td4_3);
  255. $tr4.append($td4_4);
  256. var $tr5= $("<tr></tr>");
  257. var $td5_1 = $("<th>登记时间</th>");
  258. var registerTime = checkHouseList[j].registerTime==undefined ?"":dealDate(checkHouseList[j].registerTime);
  259. var $td5_2 = $("<td>"+registerTime+"</td>");
  260. var $td5_3 = $("<th>转移时间</th>");
  261. var transferTime = checkHouseList[j].transferTime==undefined ?"":dealDate(checkHouseList[j].transferTime);
  262. var $td5_4 = $("<td>"+transferTime+"</td>");
  263. $tr5.append($td5_1);
  264. $tr5.append($td5_2);
  265. $tr5.append($td5_3);
  266. $tr5.append($td5_4);
  267. var $tr6= $("<tr></tr>");
  268. $("#checkHouseTable_detail").append($tr3);
  269. $("#checkHouseTable_detail").append($tr4);
  270. $("#checkHouseTable_detail").append($tr5);
  271. $("#checkHouseTable_detail").append($tr6);
  272. }else{
  273. $("#checkHouseTable_detail").append("<tr><td colspan='4'>无反馈信息</td></tr><tr></tr>");
  274. }
  275. }
  276. }
  277. }
  278. })
  279. }
  280. function commonHouseHelpOrder_add_submit(){
  281. $('#addCommonHouseHelpOrderForm').form('submit',{
  282. url : whzl.basePath+'/commonHouseHelpOrderAction_addCommonHouseHelpOrder',
  283. success : function(result){
  284. parent.$.messager.progress('close');
  285. var parseResult = $.parseJSON(result);
  286. if(parseResult.success){
  287. $("#addcommonHouseHelpOrderDialog").dialog("close");
  288. $('#commonHouseHelpOrderDataGrid').datagrid('reload');
  289. }
  290. }
  291. }
  292. );
  293. }
  294. </script>
  295. <form id="addCommonHouseHelpOrderForm" method="post" enctype="multipart/form-data">
  296. <div class="easyui-tabs" id="tabs_add">
  297. <div title="购房信息" id="gfxx_add">
  298. <table class="mytable" style="width: 100%;">
  299. <tr>
  300. <th width="20%">房屋地址</th>
  301. <td width="30%">
  302. <input class="easyui-validatebox" required="true" type="text" id="houseAddress_add" name="commonHouseHelpOrder.houseAddress">
  303. <input type="hidden" id="securityPersonId_add" name="commonHouseHelpOrder.securityPersonId">
  304. <input type="hidden" id="securityPersonName_add" name="commonHouseHelpOrder.securityPersonName">
  305. <input type="hidden" id="securityPersonIdCard_add" name="commonHouseHelpOrder.securityPersonIdCard">
  306. </td>
  307. <th width="20%">开发商</th>
  308. <td width="30%">
  309. <input class="easyui-validatebox" required="true" type="text" id="developer_add" name="commonHouseHelpOrder.developer">
  310. </td>
  311. </tr>
  312. <tr>
  313. <th width="20%">是否现房</th>
  314. <td colspan="3">
  315. <select id="isExistHouse_add" name="commonHouseHelpOrder.isExistHouse" required="true" class="easyui-validatebox" >
  316. <option value="">请选择</option>
  317. </select>
  318. </td>
  319. </tr>
  320. <tr>
  321. <th width="20%">人均保障面积(㎡)</th>
  322. <td width="30%">
  323. <input class="easyui-numberbox" value="24" precision="2" required="true" type="text" id="protectAvgArea_add" name="commonHouseHelpOrder.protectAvgArea" >
  324. </td>
  325. <th width="20%">保障人口数量</th>
  326. <td width="30%">
  327. <input class="easyui-numberbox" required="true" type="text" id="securityNum_add" name="commonHouseHelpOrder.securityNum" >
  328. </td>
  329. </tr>
  330. <tr>
  331. <th width="20%">住宅面积(㎡)</th>
  332. <td width="30%">
  333. <input class="easyui-numberbox" precision="2" required="true" type="text" id="houseArea_add" name="commonHouseHelpOrder.houseArea" >
  334. </td>
  335. <th width="20%">车库面积(㎡)</th>
  336. <td width="30%">
  337. <input class="easyui-numberbox" precision="2" required="true" type="text" id="garageArea_add" name="commonHouseHelpOrder.garageArea" >
  338. </td>
  339. </tr>
  340. <tr>
  341. <th width="20%">保障面积(㎡)</th>
  342. <td width="30%">
  343. <input class="easyui-numberbox" precision="2" required="true" type="text" id="protectArea_add" name="commonHouseHelpOrder.protectArea" >
  344. </td>
  345. <th width="20%">保障外面积(㎡)</th>
  346. <td width="30%">
  347. <input class="easyui-numberbox" precision="2" required="true" type="text" id="protectOutArea_add" name="commonHouseHelpOrder.protectOutArea" >
  348. </td>
  349. </tr>
  350. <tr>
  351. <th width="20%">住宅单价(元/㎡)</th>
  352. <td width="30%">
  353. <input class="easyui-numberbox" precision="5" required="true" type="text" id="housePrice_add" name="commonHouseHelpOrder.housePrice" >
  354. </td>
  355. <th width="20%">车库单价(元/㎡)</th>
  356. <td width="30%">
  357. <input class="easyui-numberbox" precision="2" required="true" type="text" id="garagePrice_add" name="commonHouseHelpOrder.garagePrice" >
  358. </td>
  359. </tr>
  360. <tr>
  361. <th width="20%">住宅总价(元)</th>
  362. <td width="30%">
  363. <input class="easyui-numberbox" precision="2" required="true" type="text" id="houseMoney_add" name="commonHouseHelpOrder.houseMoney" >
  364. </td>
  365. <th width="20%">车库总价(元)</th>
  366. <td width="30%">
  367. <input class="easyui-numberbox" precision="2" required="true" type="text" id="garageMoney_add" name="commonHouseHelpOrder.garageMoney" >
  368. </td>
  369. </tr>
  370. <tr>
  371. <th width="20%">房屋总价(元)</th>
  372. <td colspan="3">
  373. <input class="easyui-numberbox" precision="2" required="true" type="text" id="totalMoney_add" name="commonHouseHelpOrder.totalMoney" >
  374. </td>
  375. </tr>
  376. <tr>
  377. <th width="20%">保障面积内政府产权比例</th>
  378. <td width="30%">
  379. <input class="easyui-numberbox" style="width:50px" precision="2" required="true" type="text" id="govPercent_add" name="commonHouseHelpOrder.govPercent" >%
  380. </td>
  381. <th width="20%">保障面积内个人产权比例</th>
  382. <td width="30%">
  383. <input class="easyui-numberbox" style="width:50px" precision="2" required="true" type="text" id="personPercent_add" name="commonHouseHelpOrder.personPercent" >%
  384. </td>
  385. </tr>
  386. <tr>
  387. <th width="20%">个人保障面积内金额(元)</th>
  388. <td width="30%">
  389. <input class="easyui-numberbox" precision="2" required="true" type="text" id="personProtectMoney_add" name="commonHouseHelpOrder.personProtectMoney">
  390. </td>
  391. <th width="20%">个人保障面积外金额(不含车库)(元)</th>
  392. <td width="30%">
  393. <input class="easyui-numberbox" precision="2" required="true" type="text" id="personOutMoney_add" name="commonHouseHelpOrder.personOutMoney">
  394. </td>
  395. </tr>
  396. <tr>
  397. <th width="20%">政府补贴金额(元)</th>
  398. <td width="30%">
  399. <input class="easyui-numberbox" precision="2" required="true" type="text" id="govMoney_add" name="commonHouseHelpOrder.govMoney">
  400. </td>
  401. <th width="20%">个人总金额(含车库)(元)</th>
  402. <td width="30%">
  403. <input class="easyui-numberbox" precision="2" required="true" type="text" id="personTotalMoney_add" name="commonHouseHelpOrder.personTotalMoney">
  404. </td>
  405. </tr>
  406. </table>
  407. </div>
  408. <div title="购房人信息" id="grxx_add">
  409. <table class="mytable" style="width: 100%;">
  410. <tr>
  411. <th width="20%">申请人姓名</th>
  412. <td width="30%">
  413. <span id="name_add"></span>
  414. </td>
  415. <th width="20%">申请人身份证号</th>
  416. <td width="30%">
  417. <span id="idCard_add"></span>
  418. </td>
  419. </tr>
  420. <tr>
  421. <th>
  422. 人员类型
  423. </th>
  424. <td>
  425. <span id="personType_add"></span>
  426. </td>
  427. <th>
  428. 婚姻状况
  429. </th>
  430. <td>
  431. <span id="maritalStatus_add"></span>
  432. </td>
  433. </tr>
  434. <tr>
  435. <th>联系电话</th>
  436. <td >
  437. <span id="phone_add"></span>
  438. </td>
  439. <th>工作单位</th>
  440. <td >
  441. <span id="company_add"></span>
  442. </td>
  443. </tr>
  444. <tr>
  445. <th>
  446. 户口所在地
  447. </th>
  448. <td colspan = "3" >
  449. <span id="residence_add"></span>
  450. </td>
  451. </tr>
  452. <tr>
  453. <th>
  454. 户号
  455. </th>
  456. <td>
  457. <span id="residenceNo_add"></span>
  458. </td>
  459. <th>
  460. 取得市区户口年限
  461. </th>
  462. <td>
  463. <span id="residenceYear_add"></span>
  464. </td>
  465. </tr>
  466. <tr>
  467. <th>
  468. 家庭总人口数
  469. </th>
  470. <td>
  471. <span id="familyNum_add"></span>
  472. </td>
  473. <th>
  474. 享受低保人数
  475. </th>
  476. <td>
  477. <span id="securityNum_add_1"></span>
  478. </td>
  479. </tr>
  480. <tr>
  481. <th>
  482. 家庭人均收入
  483. </th>
  484. <td>
  485. <span id="avgIncome_add"></span>
  486. </td>
  487. <th>
  488. 保障类别
  489. </th>
  490. <td>
  491. <span id="applyType_add"></span>
  492. </td>
  493. </tr>
  494. </table>
  495. </div>
  496. <div title="房产反馈" id="checkHouse_detail">
  497. <table id="checkHouseTable_detail" class="mytable">
  498. </table>
  499. </div>
  500. <div title="同户籍家庭其他成员" id="qtcy_add">
  501. <table id="dg_add" title="同户籍家庭其他成员" >
  502. <thead frozen="true">
  503. <tr>
  504. <th data-options="field:'name',sortable:true,width:80,align:'center',editor:'textbox'">姓名</th>
  505. </tr>
  506. </thead>
  507. <thead>
  508. <tr>
  509. <th data-options="field:'relative',sortable:true,width:70,align:'center',formatter:relativeFormatter">与户主<br/>关系</th>
  510. <th data-options="field:'idCard',sortable:true,width:150,align:'center'">身份证号</th>
  511. <th data-options="field:'maritalStatus',sortable:true,width:70,align:'center',formatter:maritalStatusFormatter">婚姻状况</th>
  512. <th data-options="field:'residenceYear',sortable:true,width:70,align:'center'">获取市区<br/>户口年限</th>
  513. <th data-options="field:'company',sortable:true,width:150,align:'center'">工作单位</th>
  514. <th data-options="field:'income',sortable:true,width:80,align:'center'">年收入</th>
  515. <th data-options="field:'isInRange',sortable:true,width:70,align:'center',formatter:isInRangeFormatter">是否在<br/>保障范围</th>
  516. </tr>
  517. </thead>
  518. </table>
  519. </div>
  520. </div>
  521. </form>