reviewStreet.jsp 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. <!-- 街办审核页面 -->
  2. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  3. <script type="text/javascript">
  4. var securityPersonApplyId = null;
  5. var type;
  6. var addType;
  7. var state;
  8. var task_submit = function(id){
  9. if($("#opinion_update").val()==2){
  10. $.messager.confirm('提示', '确定审核不符合吗?', function(r){
  11. if(r){
  12. if($("#remark_update").val()!=''){
  13. submit1();
  14. }else{
  15. $.messager.alert("提醒","请填写不符合备注");
  16. return false;
  17. }
  18. }
  19. });
  20. }else{
  21. submit1();
  22. }
  23. }
  24. function submit1(){
  25. if($("#securityNum_update").val()==0||$("#securityNum_update").val()==''){
  26. $.messager.alert("提醒","请输入保障人口");
  27. return false;
  28. }
  29. parent.$.messager.progress({
  30. title : '提示',
  31. text : '数据处理中,请稍候....'
  32. });
  33. $('#securityPersonApplyForm').form('submit',{
  34. url : whzl.basePath+'/securityPersonApplyAction_reviewStreet',
  35. success : function(result){
  36. var parseResult = $.parseJSON(result);
  37. if(parseResult.success){
  38. $("#reviewDialog").dialog("close");
  39. if($('#securityPersonApplyDataGrid') != null){
  40. $('#securityPersonApplyDataGrid').datagrid('reload');
  41. }
  42. if($('#taskDataGrid') != null){
  43. $('#taskDataGrid').datagrid('reload');
  44. }
  45. parent.$.messager.progress('close');
  46. }else{
  47. parent.$.messager.progress('close');
  48. $.messager.alert("提示",parseResult.message);
  49. }
  50. }
  51. });
  52. }
  53. var task_load = function(id){
  54. $("#tabs_detail_1").tabs("select",1);
  55. securityPersonApplyId = id;
  56. $("#securityPersonApplyId_update").val(id)
  57. $.ajax({
  58. type: "post",//使用get方法访问后台
  59. dataType: "json",//返回json格式的数据
  60. url: "securityPersonApply2Action_findById",//要访问的后台地址
  61. data: "securityPersonApply.id="+id,//要发送的数据
  62. complete :function(){$("#load").hide();},//AJAX请求完成时隐藏loading提示
  63. success: function(msg){//msg为返回的数据,在这里做数据绑定
  64. //基本信息
  65. $("#name_review").text(msg.obj.securityPersonName);
  66. $("#idCard_review").text(msg.obj.securityPersonIdCard);
  67. var maritalStatus = "";
  68. for(var nItem = 0; nItem < maritalStatusObj.length; nItem++ ){
  69. if(maritalStatusObj[nItem].code == msg.obj.maritalStatus){
  70. maritalStatus = maritalStatusObj[nItem].value;
  71. }
  72. }
  73. $("#maritalStatus_review").text(maritalStatus);
  74. $("#phone_review").text(msg.obj.phone);
  75. $("#company_review").text(msg.obj.company);
  76. $("#workPlace_review").text(msg.obj.workPlace)
  77. if(msg.obj.hk_flag==1){
  78. $("#residence_review").text(msg.obj.houseRegister.parent.parent.name + "-" + msg.obj.houseRegister.parent.name + "-" + msg.obj.houseRegister.name);
  79. }else{
  80. $("#residence_review").text(msg.obj.accountLocation)
  81. }
  82. $("#temporaryDate_review").text(dealDate(msg.obj.temporaryDate));
  83. $("#securityNum_review").text(msg.obj.securityNum);
  84. $("#securityNum_update").val(msg.obj.securityNum);
  85. $("#familyNum_review").text(msg.obj.familyNum);
  86. $("#avgIncome_review_th").show();
  87. $("#avgIncome_review_td").show();
  88. $("#avgIncome_review").text(msg.obj.avgIncome);
  89. var applyType = "";
  90. for(var nItem = 0; nItem < applyTypeObj.length; nItem++ ){
  91. if(applyTypeObj[nItem].code == msg.obj.applyType){
  92. applyType = applyTypeObj[nItem].value;
  93. }
  94. }
  95. $("#applyType_review").text(applyType);
  96. //家庭住房情况
  97. $("#existArea_detail_1").text(msg.obj.existArea);
  98. $("#avgArea_detail_1").text(msg.obj.avgArea);
  99. var education;
  100. for(var nItem = 0; nItem < educationObj.length; nItem++ ){
  101. if(educationObj[nItem].code == msg.obj.education){
  102. education = educationObj[nItem].value;
  103. }
  104. }
  105. $("#education_detail_1").text(education);
  106. $("#graduationDate_detail_1").text(dealDate(msg.obj.graduationDate));
  107. //是否残疾人
  108. var isDisability;
  109. for(var nItem = 0; nItem < yesOrNoObj.length; nItem++ ){
  110. if(yesOrNoObj[nItem].code == msg.obj.isDisability){
  111. isDisability = yesOrNoObj[nItem].value;
  112. }
  113. }
  114. $("#isDisability_review").text(isDisability);
  115. //是否退伍军人
  116. var isExServicemen;
  117. for(var nItem = 0; nItem < yesOrNoObj.length; nItem++ ){
  118. if(yesOrNoObj[nItem].code == msg.obj.isExServicemen){
  119. isExServicemen = yesOrNoObj[nItem].value;
  120. }
  121. }
  122. $("#isExServicemen_review").text(isExServicemen);
  123. //社保
  124. var pension;
  125. for(var nItem = 0; nItem < yesOrNoObj.length; nItem++ ){
  126. if(yesOrNoObj[nItem].code == msg.obj.pension){
  127. pension = yesOrNoObj[nItem].value;
  128. }
  129. }
  130. $("#pension_review").text(pension);
  131. $("#pensionDate_review").text(msg.obj.pensionDate);
  132. var isAssignmentHouse = "";
  133. var hasUsed = "";
  134. for(var nItem = 0; nItem < yesOrNoObj.length; nItem++ ){
  135. if(yesOrNoObj[nItem].code == msg.obj.isAssignmentHouse){
  136. isAssignmentHouse = yesOrNoObj[nItem].value;
  137. }
  138. if(yesOrNoObj[nItem].code == msg.obj.hasUsed){
  139. hasUsed = yesOrNoObj[nItem].value;
  140. }
  141. }
  142. $("#isAssignmentHouse_detail_1").text(isAssignmentHouse);
  143. $("#hasUsed_detail_1").text(hasUsed);
  144. var currentHouseSituationInfo = "";
  145. var currentHouseSituation = msg.obj.currentHouseSituation;
  146. if(currentHouseSituation=="1"){
  147. $("#currentHouseSituation_detail_1").text("自有房产");
  148. $("#currentHouseSituationInfo").show();
  149. currentHouseSituationInfo ="房屋坐落:"+ msg.obj.existReal+",面积:"+ msg.obj.existArea+",产权人:"+ msg.obj.propertyPerson;
  150. $("#currentHouseSituationInfo_detail_1").text(currentHouseSituationInfo);
  151. }else if(currentHouseSituation=="2"){
  152. $("#currentHouseSituation_detail_1").text("租住私房");
  153. }else if(currentHouseSituation=="3"){
  154. $("#currentHouseSituation_detail_1").text("借住私房");
  155. }else if(currentHouseSituation=="4"){
  156. $("#currentHouseSituation_detail_1").text("租住公房");
  157. $("#currentHouseSituationInfo").show();
  158. currentHouseSituationInfo ="房屋坐落:"+ msg.obj.existReal+",面积:"+ msg.obj.existArea+",产权单位:"+ msg.obj.propertyCompany;
  159. $("#currentHouseSituationInfo_detail_1").text(currentHouseSituationInfo);
  160. }
  161. //上传图片材料
  162. for(var i=0;i< msg.obj.applyMaterialsFile.length;i++){
  163. var $image = $("<img src='../" + msg.obj.applyMaterialsFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.applyMaterialsFile[i].sprId+",\""+msg.obj.applyMaterialsFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  164. $("#applyMaterialsFile_detail_1").append ($image);
  165. }
  166. for(var i=0;i< msg.obj.idCardFile.length;i++){
  167. var $image = $("<img src='../" + msg.obj.idCardFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.idCardFile[i].sprId+",\""+msg.obj.idCardFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  168. $("#idCardFile_detail_1").append ($image);
  169. }
  170. for(var i=0;i< msg.obj.residenceFile.length;i++){
  171. var $image = $("<img src='../" + msg.obj.residenceFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.residenceFile[i].sprId+",\""+msg.obj.residenceFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  172. $("#residenceFile_detail_1").append ($image);
  173. }
  174. for(var i=0;i< msg.obj.incomeFile.length;i++){
  175. var $image = $("<img src='../" + msg.obj.incomeFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.incomeFile[i].sprId+",\""+msg.obj.incomeFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  176. $("#incomeFile_detail_1").append ($image);
  177. }
  178. for(var i=0;i< msg.obj.propertyCommissionFile.length;i++){
  179. var $image = $("<img src='../" + msg.obj.propertyCommissionFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.propertyCommissionFile[i].sprId+",\""+msg.obj.propertyCommissionFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  180. $("#propertyCommissionFile_detail_1").append ($image);
  181. }
  182. for(var i=0;i< msg.obj.proofOfMarriageFile.length;i++){
  183. var $image = $("<img src='../" + msg.obj.proofOfMarriageFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.proofOfMarriageFile[i].sprId+",\""+msg.obj.proofOfMarriageFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  184. $("#proofOfMarriageFile_detail_1").append ($image);
  185. }
  186. for(var i=0;i< msg.obj.rentalAgreementFile.length;i++){
  187. var $image = $("<img src='../" + msg.obj.rentalAgreementFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.rentalAgreementFile[i].sprId+",\""+msg.obj.rentalAgreementFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  188. $("#rentalAgreementFile_detail_1").append ($image);
  189. }
  190. for(var i=0;i< msg.obj.otherFile.length;i++){
  191. var $image = $("<img src='../" + msg.obj.otherFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.otherFile[i].sprId+",\""+msg.obj.otherFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  192. $("#otherFile_detail_1").append ($image);
  193. }
  194. for(var i=0;i< msg.obj.temporaryPermitFile.length;i++){
  195. var $image = $("<img src='../" + msg.obj.temporaryPermitFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.temporaryPermitFile[i].sprId+",\""+msg.obj.temporaryPermitFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  196. $("#temporaryPermitFile_detail_1").append ($image);
  197. }
  198. for(var i=0;i< msg.obj.laborContractFile.length;i++){
  199. var $image = $("<img src='../" + msg.obj.laborContractFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.laborContractFile[i].sprId+",\""+msg.obj.laborContractFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  200. $("#laborContractFile_detail_1").append ($image);
  201. }
  202. for(var i=0;i< msg.obj.diplomaFile.length;i++){
  203. var $image = $("<img src='../" + msg.obj.diplomaFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.diplomaFile[i].sprId+",\""+msg.obj.diplomaFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  204. $("#diplomaFile_detail_1").append ($image);
  205. }
  206. for(var i=0;i< msg.obj.companyProofFile.length;i++){
  207. var $image = $("<img src='../" + msg.obj.companyProofFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.companyProofFile[i].sprId+",\""+msg.obj.companyProofFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  208. $("#companyProofFile_detail_1").append ($image);
  209. }
  210. for(var i=0;i< msg.obj.relationshipProofFile.length;i++){
  211. var $image = $("<img src='../" + msg.obj.relationshipProofFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.relationshipProofFile[i].sprId+",\""+msg.obj.relationshipProofFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  212. $("#relationshipProofFile_detail_1").append ($image);
  213. }
  214. if(msg.obj.carFile.length>0){
  215. $("#carFile_tr").show();
  216. for(var i=0;i< msg.obj.carFile.length;i++){
  217. var $image = $("<img src='../" + msg.obj.carFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.carFile[i].sprId+",\""+msg.obj.carFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  218. $("#carFile_detail_1").append ($image);
  219. }
  220. }
  221. if(msg.obj.businessFile.length>0){
  222. $("#businessFile_tr").show();
  223. for(var i=0;i< msg.obj.businessFile.length;i++){
  224. var $image = $("<img src='../" + msg.obj.businessFile[i].filePath + "' width='100' height='40' onclick = 'openImg("+msg.obj.businessFile[i].sprId+",\""+msg.obj.businessFile[i].propertyName+"\",\""+msg.obj.securityPersonName+"\")'/>");
  225. $("#businessFile_detail_1").append ($image);
  226. }
  227. }
  228. //审核情况
  229. if(msg.obj.type == 1 || msg.obj.type == 2 || msg.obj.type == 10){
  230. if(typeof(msg.obj.communityUserId) != "undefined"){
  231. var communityOpinion = "";
  232. for(var nItem = 0; nItem < opinionObj.length; nItem++ ){
  233. if(opinionObj[nItem].code == msg.obj.communityOpinion){
  234. communityOpinion = opinionObj[nItem].value;
  235. }
  236. }
  237. $("#shyj_table").append("<tr><th width = '20%'>街道办</th><td width = '80%'>"+
  238. "<span style='width:115px;display:inline-block;'>"+msg.obj.communityUserName+"</span>"+
  239. "<span>"+dealDate(msg.obj.communityDate)+" 审核意见:"+communityOpinion+" 备注:"+msg.obj.communityRemark+"</span></td></tr>");
  240. }
  241. if(typeof(msg.obj.streetUserId) != "undefined"){
  242. var streetOpinion = "";
  243. for(var nItem = 0; nItem < opinionObj.length; nItem++ ){
  244. if(opinionObj[nItem].code == msg.obj.streetOpinion){
  245. streetOpinion = opinionObj[nItem].value;
  246. }
  247. }
  248. $("#shyj_table").append("<tr><th width = '20%'>区住建局</th><td width = '80%'>"+
  249. "<span style='width:115px;display:inline-block;'>"+msg.obj.streetUserName+"</span>"+
  250. "<span>"+dealDate(msg.obj.streetDate)+" 审核意见:"+streetOpinion+" 备注:"+msg.obj.streetRemark+"</span></td></tr>");
  251. }
  252. if(typeof(msg.obj.housesOwnershipUserId) != "undefined"){
  253. var housesOwnershipOpinion = "";
  254. for(var nItem = 0; nItem < opinionObj.length; nItem++ ){
  255. if(opinionObj[nItem].code == msg.obj.housesOwnershipOpinion){
  256. housesOwnershipOpinion = opinionObj[nItem].value;
  257. }
  258. }
  259. $("#shyj_table").append("<tr><th width = '20%'>市房屋登记机构</th><td width = '80%'>"+
  260. "<span style='width:115px;display:inline-block;'>"+msg.obj.housesOwnershipUserName+"</span>"+
  261. "<span>"+dealDate(msg.obj.housesOwnershipDate)+"</span></td></tr>");
  262. }
  263. if(typeof(msg.obj.civilUserId) != "undefined"){
  264. var civilOpinion = "";
  265. for(var nItem = 0; nItem < opinionObj.length; nItem++ ){
  266. if(opinionObj[nItem].code == msg.obj.civilOpinion){
  267. civilOpinion = opinionObj[nItem].value;
  268. }
  269. }
  270. $("#shyj_table").append("<tr><th width = '20%'>市民政</th><td width = '80%'>"+
  271. "<span style='width:115px;display:inline-block;'>"+msg.obj.civilUserName+"</span>"+
  272. "<span>"+dealDate(msg.obj.civilDate)+"</span></td></tr>");
  273. }
  274. if(typeof(msg.obj.guaranteeUserId) != "undefined"){
  275. var guaranteeOpinion = "";
  276. for(var nItem = 0; nItem < opinionObj.length; nItem++ ){
  277. if(opinionObj[nItem].code == msg.obj.guaranteeOpinion){
  278. guaranteeOpinion = opinionObj[nItem].value;
  279. }
  280. }
  281. $("#shyj_table").append("<tr><th width = '20%'>区住建局</th><td width = '80%'>"+
  282. "<span style='width:115px;display:inline-block;'>"+msg.obj.guaranteeUserName+"</span>"+
  283. "<span>"+dealDate(msg.obj.guaranteeDate)+" 审核意见:"+guaranteeOpinion+" 备注:"+msg.obj.guaranteeRemark+"</span></td></tr>");
  284. }
  285. }
  286. }
  287. });
  288. //家庭关系列表
  289. $('#dg_detail_1').datagrid({
  290. rownumbers:true,
  291. border:false,
  292. sortOrder:'desc',
  293. url:whzl.basePath + '/securityPersonApplyAction_listSecurityPersonApplyRelative?securityPersonApplyId='+id,
  294. checkOnSelect:true,
  295. selectOnCheck:false,
  296. loadFilter:function(result){
  297. if(result.success){
  298. return result.obj;
  299. }else{
  300. $.messager.alert("提示",result.message);
  301. return ;
  302. }
  303. }
  304. });
  305. }
  306. function updateTask(){
  307. $("#taskDataGrid").datagrid("reload");
  308. }
  309. function openImg(id,name,personName){
  310. window.open ('securityPersonApply2Action_viewImg?id='+id+"&name="+name+"&personName="+personName,'newwindow_'+new Date().getTime(),'height=400,width=500,top=0,left=800,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no,titlebar=no');
  311. }
  312. var viewImgsFormatter = function(value , row , index){
  313. return value + "&nbsp;<a onclick='openImg("+row.id+",\"\",\""+row.name+"\")' style='cursor:pointer'>【查看附件】</a>"
  314. }
  315. /**是否在保障范围内格式*/
  316. var yesOrNoFormatter = function(value , row , index){
  317. var yesOrNo = "";
  318. for(var nItem = 0; nItem < yesOrNoObj.length; nItem++ ){
  319. if(yesOrNoObj[nItem].code == value){
  320. yesOrNo = yesOrNoObj[nItem].value;
  321. break;
  322. }
  323. }
  324. return yesOrNo;
  325. };
  326. </script>
  327. <div style="width: 100%">
  328. <div class="easyui-tabs" id="tabs_detail_1" style="height:350px;" >
  329. <div title="个人信息" id="grxx_detail_1">
  330. <table class="mytable" style="width: 100%;">
  331. <tr>
  332. <th width="20%">身份证号</th>
  333. <td width="30%">
  334. <span id="idCard_review"></span>
  335. </td>
  336. <th width="20%">申请人姓名</th>
  337. <td width="30%">
  338. <span id="name_review"></span>
  339. </td>
  340. </tr>
  341. <tr>
  342. <th>
  343. 婚姻状况
  344. </th>
  345. <td>
  346. <span id="maritalStatus_review"></span>
  347. </td>
  348. <th>联系电话</th>
  349. <td >
  350. <span id="phone_review"></span>
  351. </td>
  352. </tr>
  353. <tr>
  354. <th id="avgIncome_review_th" style="display: none;">家庭人均收入</th>
  355. <td id="avgIncome_review_td" style="display: none;">
  356. <span id="avgIncome_review"></span>
  357. </td>
  358. <th>申请类型</th>
  359. <td>
  360. <span id="applyType_review"></span>
  361. </td>
  362. </tr>
  363. <tr>
  364. <th>户口所在地</th>
  365. <td>
  366. <span id="residence_review"></span>
  367. </td>
  368. <th id="temporaryDate_review_th" style="display: none;">
  369. 取得市区户口时间
  370. </th>
  371. <td id="temporaryDate_review_td" style="display: none;">
  372. <span id="temporaryDate_review"></span>
  373. </td>
  374. </tr>
  375. <tr>
  376. <th>
  377. 家庭总人口数
  378. </th>
  379. <td>
  380. <span id="familyNum_review"></span>
  381. </td>
  382. <th>
  383. 保障人员数量
  384. </th>
  385. <td>
  386. <span id="securityNum_review"></span>
  387. </td>
  388. </tr>
  389. <tr id="workInfo_review_tr" style="display: none;">
  390. <th>工作单位名称</th>
  391. <td >
  392. <span id="company_review"></span>
  393. </td>
  394. <th>工作单位地址</th>
  395. <td>
  396. <span id="workPlace_review"></span>
  397. </td>
  398. </tr>
  399. <tr id="otherInfo_review_tr" style="display: none;">
  400. <th id="isDisability_review_th" style="display: none;">
  401. 是否残疾人员
  402. </th>
  403. <td id="isDisability_review_td" style="display: none;">
  404. <span id="isDisability_review"></span>
  405. </td>
  406. <th id="isExServicemen_review_th" style="display: none;">
  407. 是否是退役军人
  408. </th>
  409. <td id="isExServicemen_review_td" style="display: none;">
  410. <span id="isExServicemen_review"></span>
  411. </td>
  412. </tr>
  413. </table>
  414. </div>
  415. <div title="同户籍家庭其他成员" id="qtcy_detail_1">
  416. <table id="dg_detail_1" title="同户籍家庭其他成员&nbsp;" style="width: 100%;">
  417. <thead frozen="true">
  418. <tr>
  419. <th data-options="field:'residenceNo',sortable:true,width:70,align:'center'">户号</th>
  420. <th data-options="field:'name',sortable:true,width:80,align:'center'">姓名</th>
  421. </tr>
  422. </thead>
  423. <thead>
  424. <tr>
  425. <th data-options="field:'relative',sortable:true,width:100,align:'center',formatter:relativeFormatter">与户主关系</th>
  426. <th data-options="field:'idCard',sortable:true,width:200,align:'center',formatter:viewImgsFormatter">身份证号</th>
  427. <th data-options="field:'maritalStatus',sortable:true,width:130,align:'center',formatter:maritalStatusFormatter">婚姻状况</th>
  428. <th data-options="field:'isUrban',sortable:true,width:130,align:'center',formatter:yesOrNoFormatter">是否市区户口</th>
  429. <th data-options="field:'isInRange',width:130,align:'center',formatter:yesOrNoFormatter">是否在保障范围</th>
  430. </tr>
  431. </thead>
  432. </table>
  433. </div>
  434. <div title="家庭现住房情况" ireviewdetail_1">
  435. <table class="mytable" style="width: 100%;" id="zfqk_table_detail_1">
  436. <tr>
  437. <th>
  438. 家庭现住房情况
  439. </th>
  440. <td>
  441. <span id="currentHouseSituation_detail_1"></span>
  442. </td>
  443. <td colspan="2" id="currentHouseSituationInfo" style="display: none;">
  444. <span id="currentHouseSituationInfo_detail_1"></span>
  445. </td>
  446. </tr>
  447. <tr>
  448. <th width="30%">
  449. 申请之日前五年在市区是否转让房产
  450. </th>
  451. <td width="20%">
  452. <span id="isAssignmentHouse_detail_1"></span>
  453. </td>
  454. <th width="30%">
  455. 是否享受过房改房、政策性商品房或其他住房保障政策
  456. </th>
  457. <td width="20%">
  458. <span id="hasUsed_detail_1"></span>
  459. </td>
  460. </tr>
  461. </table>
  462. </div>
  463. <div title="材料文件上传" id="wjsc_detail_1">
  464. <table class="mytable" style="width: 100%;" >
  465. <tr >
  466. <th width = "30%" id="applyMaterialsFile_review_th">
  467. 申请家庭提出的书面申请
  468. </th>
  469. <td width = "70%">
  470. <span id="applyMaterialsFile_detail_1"></span>
  471. </td>
  472. </tr>
  473. <tr>
  474. <th width = "30%">
  475. 身份证正反面
  476. </th>
  477. <td width = "70%">
  478. <span id="idCardFile_detail_1"></span>
  479. </td>
  480. </tr>
  481. <tr >
  482. <th width = "30%">
  483. 户口簿
  484. </th>
  485. <td width = "70%">
  486. <span id="residenceFile_detail_1"></span>
  487. </td>
  488. </tr>
  489. <tr >
  490. <th width = "30%">
  491. 婚姻状况证明(单身证明)
  492. </th>
  493. <td width = "70%">
  494. <span id="proofOfMarriageFile_detail_1"></span>
  495. </td>
  496. </tr>
  497. <tr id="incomeFile_tr_1" style="display: none;">
  498. <th width = "30%" >
  499. 家庭收入书面声明
  500. </th>
  501. <td width = "70%">
  502. <span id="incomeFile_detail_1"></span>
  503. </td>
  504. </tr>
  505. <tr id="temporaryPermitFile_tr_1" style="display: none;">
  506. <th>暂住证</th>
  507. <td>
  508. <span id="temporaryPermitFile_detail_1"></span>
  509. </td>
  510. </tr>
  511. <tr id="diplomaFile_tr_1" style="display: none;">
  512. <th>大中专院校毕业证书,公务员应提供所在单位证明</th>
  513. <td>
  514. <span id="diplomaFile_detail_1"></span>
  515. </td>
  516. </tr>
  517. <tr id="companyProofFile_tr_1" style="display: none;">
  518. <th>国家工作人员提供所在单位证明</th>
  519. <td>
  520. <span id="companyProofFile_detail_1"></span>
  521. </td>
  522. </tr>
  523. <tr id="relationshipProofFile_tr_1" style="display: none;">
  524. <th>申请人与共同申请人关系证明</th>
  525. <td>
  526. <span id="relationshipProofFile_detail_1"></span>
  527. </td>
  528. </tr>
  529. <tr id="laborContractFile_tr_1" style="display: none;">
  530. <th>劳动合同或者聘用合同,社保关系证明</th>
  531. <td>
  532. <span id="laborContractFile_detail_1"></span>
  533. </td>
  534. </tr>
  535. <tr id="propertyCommissionFile_tr_1" style="display: none;">
  536. <th width = "30%">
  537. 代为查询、核对家庭收入、财产状况的委托书
  538. </th>
  539. <td width = "70%">
  540. <span id="propertyCommissionFile_detail_1"></span>
  541. </td>
  542. </tr>
  543. <tr id="rentalAgreementFile_tr_1" style="display: none;">
  544. <th width = "30%">
  545. 租赁住房协议或拆迁补偿协议
  546. </th>
  547. <td width = "70%">
  548. <span id="rentalAgreementFile_detail_1"></span>
  549. </td>
  550. </tr>
  551. <tr id="carFile_tr" style="display: none;">
  552. <th>车辆保险单</th>
  553. <td>
  554. <span id="carFile_detail_1"></span>
  555. </td>
  556. </tr>
  557. <tr id="businessFile_tr" style="display: none;">
  558. <th>工商材料</th>
  559. <td>
  560. <span id="businessFile_detail_1"></span>
  561. </td>
  562. </tr>
  563. <tr>
  564. <th width = "30%">
  565. 其他住房信息上传
  566. </th>
  567. <td width = "70%">
  568. <span id="otherFile_detail_1"></span>
  569. </td>
  570. </tr>
  571. </table>
  572. </div>
  573. </div>
  574. <form id="securityPersonApplyForm" method="post">
  575. <input type="hidden" id="securityPersonApplyId_update" name="securityPersonApply.id">
  576. <input type="hidden" id="department" value="${session.user.department.id}">
  577. <table class="mytable" style="width:100%;">
  578. <tr>
  579. <th>审核人</th>
  580. <td>
  581. ${session.user.fullName}
  582. </td>
  583. <th id="opinion_th">审核意见</th>
  584. <td>
  585. <select id="opinion_update" name="opinion" class="easyui-validatebox" required="true">
  586. <option value="">请选择</option>
  587. <option value="1">符合</option>
  588. <option value="2">不符合</option>
  589. </select>
  590. </td>
  591. </tr>
  592. <tr>
  593. <th style="color: red;">保障人口</th>
  594. <td><input style="color: red;" type="text" id="securityNum_update" required="true" name="securityPersonApply.securityNum"/></td>
  595. </tr>
  596. <tr>
  597. <th>审核意见说明</th>
  598. <td colspan="3" >
  599. <textarea rows="2" cols="50" id="remark_update" name="remark"></textarea>
  600. </td>
  601. </tr>
  602. </table>
  603. </form>
  604. </div>