123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646 |
- <!-- 街办审核页面 -->
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <script type="text/javascript">
-
- var securityPersonApplyId = null;
- var type;
- var addType;
- var state;
- var task_submit = function(id){
- if($("#opinion_update").val()==2){
- $.messager.confirm('提示', '确定审核不符合吗?', function(r){
- if(r){
- if($("#remark_update").val()!=''){
- submit1();
- }else{
- $.messager.alert("提醒","请填写不符合备注");
- return false;
- }
- }
- });
- }else{
- submit1();
- }
- }
-
- function submit1(){
- if($("#securityNum_update").val()==0||$("#securityNum_update").val()==''){
- $.messager.alert("提醒","请输入保障人口");
- return false;
- }
- parent.$.messager.progress({
- title : '提示',
- text : '数据处理中,请稍候....'
- });
- $('#securityPersonApplyForm').form('submit',{
- url : whzl.basePath+'/securityPersonApplyAction_reviewStreet',
- success : function(result){
- var parseResult = $.parseJSON(result);
- if(parseResult.success){
- $("#reviewDialog").dialog("close");
- if($('#securityPersonApplyDataGrid') != null){
- $('#securityPersonApplyDataGrid').datagrid('reload');
- }
- if($('#taskDataGrid') != null){
- $('#taskDataGrid').datagrid('reload');
- }
- parent.$.messager.progress('close');
- }else{
- parent.$.messager.progress('close');
- $.messager.alert("提示",parseResult.message);
- }
- }
- });
- }
-
- var task_load = function(id){
- $("#tabs_detail_1").tabs("select",1);
- securityPersonApplyId = id;
- $("#securityPersonApplyId_update").val(id)
- $.ajax({
- type: "post",//使用get方法访问后台
- dataType: "json",//返回json格式的数据
- url: "securityPersonApply2Action_findById",//要访问的后台地址
- data: "securityPersonApply.id="+id,//要发送的数据
- complete :function(){$("#load").hide();},//AJAX请求完成时隐藏loading提示
- success: function(msg){//msg为返回的数据,在这里做数据绑定
- //基本信息
- $("#name_review").text(msg.obj.securityPersonName);
- $("#idCard_review").text(msg.obj.securityPersonIdCard);
- var maritalStatus = "";
- for(var nItem = 0; nItem < maritalStatusObj.length; nItem++ ){
- if(maritalStatusObj[nItem].code == msg.obj.maritalStatus){
- maritalStatus = maritalStatusObj[nItem].value;
- }
- }
- $("#maritalStatus_review").text(maritalStatus);
- $("#phone_review").text(msg.obj.phone);
- $("#company_review").text(msg.obj.company);
- $("#workPlace_review").text(msg.obj.workPlace)
- if(msg.obj.hk_flag==1){
- $("#residence_review").text(msg.obj.houseRegister.parent.parent.name + "-" + msg.obj.houseRegister.parent.name + "-" + msg.obj.houseRegister.name);
- }else{
- $("#residence_review").text(msg.obj.accountLocation)
- }
- $("#temporaryDate_review").text(dealDate(msg.obj.temporaryDate));
- $("#securityNum_review").text(msg.obj.securityNum);
- $("#securityNum_update").val(msg.obj.securityNum);
- $("#familyNum_review").text(msg.obj.familyNum);
- $("#avgIncome_review_th").show();
- $("#avgIncome_review_td").show();
- $("#avgIncome_review").text(msg.obj.avgIncome);
- var applyType = "";
- for(var nItem = 0; nItem < applyTypeObj.length; nItem++ ){
- if(applyTypeObj[nItem].code == msg.obj.applyType){
- applyType = applyTypeObj[nItem].value;
- }
- }
- $("#applyType_review").text(applyType);
-
- //家庭住房情况
- $("#existArea_detail_1").text(msg.obj.existArea);
- $("#avgArea_detail_1").text(msg.obj.avgArea);
- var education;
- for(var nItem = 0; nItem < educationObj.length; nItem++ ){
- if(educationObj[nItem].code == msg.obj.education){
- education = educationObj[nItem].value;
- }
- }
- $("#education_detail_1").text(education);
- $("#graduationDate_detail_1").text(dealDate(msg.obj.graduationDate));
- //是否残疾人
- var isDisability;
- for(var nItem = 0; nItem < yesOrNoObj.length; nItem++ ){
- if(yesOrNoObj[nItem].code == msg.obj.isDisability){
- isDisability = yesOrNoObj[nItem].value;
- }
- }
- $("#isDisability_review").text(isDisability);
-
- //是否退伍军人
- var isExServicemen;
- for(var nItem = 0; nItem < yesOrNoObj.length; nItem++ ){
- if(yesOrNoObj[nItem].code == msg.obj.isExServicemen){
- isExServicemen = yesOrNoObj[nItem].value;
- }
- }
- $("#isExServicemen_review").text(isExServicemen);
-
- //社保
- var pension;
- for(var nItem = 0; nItem < yesOrNoObj.length; nItem++ ){
- if(yesOrNoObj[nItem].code == msg.obj.pension){
- pension = yesOrNoObj[nItem].value;
- }
- }
- $("#pension_review").text(pension);
- $("#pensionDate_review").text(msg.obj.pensionDate);
-
- var isAssignmentHouse = "";
- var hasUsed = "";
- for(var nItem = 0; nItem < yesOrNoObj.length; nItem++ ){
- if(yesOrNoObj[nItem].code == msg.obj.isAssignmentHouse){
- isAssignmentHouse = yesOrNoObj[nItem].value;
- }
- if(yesOrNoObj[nItem].code == msg.obj.hasUsed){
- hasUsed = yesOrNoObj[nItem].value;
- }
- }
- $("#isAssignmentHouse_detail_1").text(isAssignmentHouse);
- $("#hasUsed_detail_1").text(hasUsed);
- var currentHouseSituationInfo = "";
- var currentHouseSituation = msg.obj.currentHouseSituation;
- if(currentHouseSituation=="1"){
- $("#currentHouseSituation_detail_1").text("自有房产");
- $("#currentHouseSituationInfo").show();
- currentHouseSituationInfo ="房屋坐落:"+ msg.obj.existReal+",面积:"+ msg.obj.existArea+",产权人:"+ msg.obj.propertyPerson;
- $("#currentHouseSituationInfo_detail_1").text(currentHouseSituationInfo);
- }else if(currentHouseSituation=="2"){
- $("#currentHouseSituation_detail_1").text("租住私房");
- }else if(currentHouseSituation=="3"){
- $("#currentHouseSituation_detail_1").text("借住私房");
- }else if(currentHouseSituation=="4"){
- $("#currentHouseSituation_detail_1").text("租住公房");
- $("#currentHouseSituationInfo").show();
- currentHouseSituationInfo ="房屋坐落:"+ msg.obj.existReal+",面积:"+ msg.obj.existArea+",产权单位:"+ msg.obj.propertyCompany;
- $("#currentHouseSituationInfo_detail_1").text(currentHouseSituationInfo);
- }
-
- //上传图片材料
- for(var i=0;i< msg.obj.applyMaterialsFile.length;i++){
- 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+"\")'/>");
- $("#applyMaterialsFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.idCardFile.length;i++){
- 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+"\")'/>");
- $("#idCardFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.residenceFile.length;i++){
- 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+"\")'/>");
- $("#residenceFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.incomeFile.length;i++){
- 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+"\")'/>");
- $("#incomeFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.propertyCommissionFile.length;i++){
- 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+"\")'/>");
- $("#propertyCommissionFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.proofOfMarriageFile.length;i++){
- 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+"\")'/>");
- $("#proofOfMarriageFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.rentalAgreementFile.length;i++){
- 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+"\")'/>");
- $("#rentalAgreementFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.otherFile.length;i++){
- 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+"\")'/>");
- $("#otherFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.temporaryPermitFile.length;i++){
- 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+"\")'/>");
- $("#temporaryPermitFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.laborContractFile.length;i++){
- 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+"\")'/>");
- $("#laborContractFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.diplomaFile.length;i++){
- 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+"\")'/>");
- $("#diplomaFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.companyProofFile.length;i++){
- 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+"\")'/>");
- $("#companyProofFile_detail_1").append ($image);
- }
- for(var i=0;i< msg.obj.relationshipProofFile.length;i++){
- 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+"\")'/>");
- $("#relationshipProofFile_detail_1").append ($image);
- }
-
- if(msg.obj.carFile.length>0){
- $("#carFile_tr").show();
- for(var i=0;i< msg.obj.carFile.length;i++){
- 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+"\")'/>");
- $("#carFile_detail_1").append ($image);
- }
- }
- if(msg.obj.businessFile.length>0){
- $("#businessFile_tr").show();
- for(var i=0;i< msg.obj.businessFile.length;i++){
- 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+"\")'/>");
- $("#businessFile_detail_1").append ($image);
- }
- }
-
-
-
- //审核情况
- if(msg.obj.type == 1 || msg.obj.type == 2 || msg.obj.type == 10){
- if(typeof(msg.obj.communityUserId) != "undefined"){
- var communityOpinion = "";
- for(var nItem = 0; nItem < opinionObj.length; nItem++ ){
- if(opinionObj[nItem].code == msg.obj.communityOpinion){
- communityOpinion = opinionObj[nItem].value;
- }
- }
- $("#shyj_table").append("<tr><th width = '20%'>街道办</th><td width = '80%'>"+
- "<span style='width:115px;display:inline-block;'>"+msg.obj.communityUserName+"</span>"+
- "<span>"+dealDate(msg.obj.communityDate)+" 审核意见:"+communityOpinion+" 备注:"+msg.obj.communityRemark+"</span></td></tr>");
- }
- if(typeof(msg.obj.streetUserId) != "undefined"){
- var streetOpinion = "";
- for(var nItem = 0; nItem < opinionObj.length; nItem++ ){
- if(opinionObj[nItem].code == msg.obj.streetOpinion){
- streetOpinion = opinionObj[nItem].value;
- }
- }
- $("#shyj_table").append("<tr><th width = '20%'>区住建局</th><td width = '80%'>"+
- "<span style='width:115px;display:inline-block;'>"+msg.obj.streetUserName+"</span>"+
- "<span>"+dealDate(msg.obj.streetDate)+" 审核意见:"+streetOpinion+" 备注:"+msg.obj.streetRemark+"</span></td></tr>");
- }
- if(typeof(msg.obj.housesOwnershipUserId) != "undefined"){
- var housesOwnershipOpinion = "";
- for(var nItem = 0; nItem < opinionObj.length; nItem++ ){
- if(opinionObj[nItem].code == msg.obj.housesOwnershipOpinion){
- housesOwnershipOpinion = opinionObj[nItem].value;
- }
- }
- $("#shyj_table").append("<tr><th width = '20%'>市房屋登记机构</th><td width = '80%'>"+
- "<span style='width:115px;display:inline-block;'>"+msg.obj.housesOwnershipUserName+"</span>"+
- "<span>"+dealDate(msg.obj.housesOwnershipDate)+"</span></td></tr>");
- }
- if(typeof(msg.obj.civilUserId) != "undefined"){
- var civilOpinion = "";
- for(var nItem = 0; nItem < opinionObj.length; nItem++ ){
- if(opinionObj[nItem].code == msg.obj.civilOpinion){
- civilOpinion = opinionObj[nItem].value;
- }
- }
- $("#shyj_table").append("<tr><th width = '20%'>市民政</th><td width = '80%'>"+
- "<span style='width:115px;display:inline-block;'>"+msg.obj.civilUserName+"</span>"+
- "<span>"+dealDate(msg.obj.civilDate)+"</span></td></tr>");
- }
- if(typeof(msg.obj.guaranteeUserId) != "undefined"){
- var guaranteeOpinion = "";
- for(var nItem = 0; nItem < opinionObj.length; nItem++ ){
- if(opinionObj[nItem].code == msg.obj.guaranteeOpinion){
- guaranteeOpinion = opinionObj[nItem].value;
- }
- }
- $("#shyj_table").append("<tr><th width = '20%'>区住建局</th><td width = '80%'>"+
- "<span style='width:115px;display:inline-block;'>"+msg.obj.guaranteeUserName+"</span>"+
- "<span>"+dealDate(msg.obj.guaranteeDate)+" 审核意见:"+guaranteeOpinion+" 备注:"+msg.obj.guaranteeRemark+"</span></td></tr>");
- }
- }
- }
- });
- //家庭关系列表
- $('#dg_detail_1').datagrid({
- rownumbers:true,
- border:false,
- sortOrder:'desc',
- url:whzl.basePath + '/securityPersonApplyAction_listSecurityPersonApplyRelative?securityPersonApplyId='+id,
- checkOnSelect:true,
- selectOnCheck:false,
- loadFilter:function(result){
- if(result.success){
- return result.obj;
- }else{
- $.messager.alert("提示",result.message);
- return ;
- }
- }
- });
- }
-
- function updateTask(){
- $("#taskDataGrid").datagrid("reload");
- }
- function openImg(id,name,personName){
- 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');
- }
-
- var viewImgsFormatter = function(value , row , index){
- return value + " <a onclick='openImg("+row.id+",\"\",\""+row.name+"\")' style='cursor:pointer'>【查看附件】</a>"
- }
-
- /**是否在保障范围内格式*/
- var yesOrNoFormatter = function(value , row , index){
- var yesOrNo = "";
- for(var nItem = 0; nItem < yesOrNoObj.length; nItem++ ){
- if(yesOrNoObj[nItem].code == value){
- yesOrNo = yesOrNoObj[nItem].value;
- break;
- }
- }
- return yesOrNo;
- };
-
- </script>
- <div style="width: 100%">
- <div class="easyui-tabs" id="tabs_detail_1" style="height:350px;" >
- <div title="个人信息" id="grxx_detail_1">
- <table class="mytable" style="width: 100%;">
- <tr>
- <th width="20%">身份证号</th>
- <td width="30%">
- <span id="idCard_review"></span>
- </td>
- <th width="20%">申请人姓名</th>
- <td width="30%">
- <span id="name_review"></span>
-
- </td>
- </tr>
-
- <tr>
- <th>
- 婚姻状况
- </th>
- <td>
- <span id="maritalStatus_review"></span>
- </td>
- <th>联系电话</th>
- <td >
- <span id="phone_review"></span>
- </td>
- </tr>
- <tr>
- <th id="avgIncome_review_th" style="display: none;">家庭人均收入</th>
- <td id="avgIncome_review_td" style="display: none;">
- <span id="avgIncome_review"></span>
- </td>
- <th>申请类型</th>
- <td>
- <span id="applyType_review"></span>
- </td>
- </tr>
- <tr>
- <th>户口所在地</th>
- <td>
- <span id="residence_review"></span>
- </td>
- <th id="temporaryDate_review_th" style="display: none;">
- 取得市区户口时间
- </th>
- <td id="temporaryDate_review_td" style="display: none;">
- <span id="temporaryDate_review"></span>
- </td>
- </tr>
-
- <tr>
- <th>
- 家庭总人口数
- </th>
- <td>
- <span id="familyNum_review"></span>
- </td>
- <th>
- 保障人员数量
- </th>
- <td>
- <span id="securityNum_review"></span>
- </td>
- </tr>
- <tr id="workInfo_review_tr" style="display: none;">
- <th>工作单位名称</th>
- <td >
- <span id="company_review"></span>
- </td>
- <th>工作单位地址</th>
- <td>
- <span id="workPlace_review"></span>
- </td>
- </tr>
-
- <tr id="otherInfo_review_tr" style="display: none;">
- <th id="isDisability_review_th" style="display: none;">
- 是否残疾人员
- </th>
- <td id="isDisability_review_td" style="display: none;">
- <span id="isDisability_review"></span>
- </td>
- <th id="isExServicemen_review_th" style="display: none;">
- 是否是退役军人
- </th>
- <td id="isExServicemen_review_td" style="display: none;">
- <span id="isExServicemen_review"></span>
- </td>
- </tr>
-
- </table>
- </div>
- <div title="同户籍家庭其他成员" id="qtcy_detail_1">
- <table id="dg_detail_1" title="同户籍家庭其他成员 " style="width: 100%;">
- <thead frozen="true">
- <tr>
- <th data-options="field:'residenceNo',sortable:true,width:70,align:'center'">户号</th>
- <th data-options="field:'name',sortable:true,width:80,align:'center'">姓名</th>
- </tr>
- </thead>
- <thead>
- <tr>
- <th data-options="field:'relative',sortable:true,width:100,align:'center',formatter:relativeFormatter">与户主关系</th>
- <th data-options="field:'idCard',sortable:true,width:200,align:'center',formatter:viewImgsFormatter">身份证号</th>
- <th data-options="field:'maritalStatus',sortable:true,width:130,align:'center',formatter:maritalStatusFormatter">婚姻状况</th>
- <th data-options="field:'isUrban',sortable:true,width:130,align:'center',formatter:yesOrNoFormatter">是否市区户口</th>
- <th data-options="field:'isInRange',width:130,align:'center',formatter:yesOrNoFormatter">是否在保障范围</th>
- </tr>
- </thead>
- </table>
-
- </div>
- <div title="家庭现住房情况" ireviewdetail_1">
- <table class="mytable" style="width: 100%;" id="zfqk_table_detail_1">
- <tr>
- <th>
- 家庭现住房情况
- </th>
- <td>
- <span id="currentHouseSituation_detail_1"></span>
- </td>
- <td colspan="2" id="currentHouseSituationInfo" style="display: none;">
- <span id="currentHouseSituationInfo_detail_1"></span>
- </td>
- </tr>
- <tr>
- <th width="30%">
- 申请之日前五年在市区是否转让房产
- </th>
- <td width="20%">
- <span id="isAssignmentHouse_detail_1"></span>
- </td>
- <th width="30%">
- 是否享受过房改房、政策性商品房或其他住房保障政策
- </th>
- <td width="20%">
- <span id="hasUsed_detail_1"></span>
- </td>
- </tr>
- </table>
-
- </div>
- <div title="材料文件上传" id="wjsc_detail_1">
- <table class="mytable" style="width: 100%;" >
- <tr >
- <th width = "30%" id="applyMaterialsFile_review_th">
- 申请家庭提出的书面申请
- </th>
- <td width = "70%">
- <span id="applyMaterialsFile_detail_1"></span>
- </td>
- </tr>
-
- <tr>
- <th width = "30%">
- 身份证正反面
- </th>
- <td width = "70%">
- <span id="idCardFile_detail_1"></span>
- </td>
- </tr>
-
- <tr >
- <th width = "30%">
- 户口簿
- </th>
- <td width = "70%">
- <span id="residenceFile_detail_1"></span>
- </td>
- </tr>
-
- <tr >
- <th width = "30%">
- 婚姻状况证明(单身证明)
- </th>
- <td width = "70%">
- <span id="proofOfMarriageFile_detail_1"></span>
- </td>
- </tr>
-
- <tr id="incomeFile_tr_1" style="display: none;">
- <th width = "30%" >
- 家庭收入书面声明
- </th>
- <td width = "70%">
- <span id="incomeFile_detail_1"></span>
- </td>
- </tr>
-
- <tr id="temporaryPermitFile_tr_1" style="display: none;">
- <th>暂住证</th>
- <td>
- <span id="temporaryPermitFile_detail_1"></span>
- </td>
- </tr>
-
- <tr id="diplomaFile_tr_1" style="display: none;">
- <th>大中专院校毕业证书,公务员应提供所在单位证明</th>
- <td>
- <span id="diplomaFile_detail_1"></span>
- </td>
- </tr>
-
- <tr id="companyProofFile_tr_1" style="display: none;">
- <th>国家工作人员提供所在单位证明</th>
- <td>
- <span id="companyProofFile_detail_1"></span>
- </td>
- </tr>
-
- <tr id="relationshipProofFile_tr_1" style="display: none;">
- <th>申请人与共同申请人关系证明</th>
- <td>
- <span id="relationshipProofFile_detail_1"></span>
- </td>
- </tr>
-
- <tr id="laborContractFile_tr_1" style="display: none;">
- <th>劳动合同或者聘用合同,社保关系证明</th>
- <td>
- <span id="laborContractFile_detail_1"></span>
- </td>
- </tr>
-
- <tr id="propertyCommissionFile_tr_1" style="display: none;">
- <th width = "30%">
- 代为查询、核对家庭收入、财产状况的委托书
- </th>
- <td width = "70%">
- <span id="propertyCommissionFile_detail_1"></span>
- </td>
- </tr>
-
- <tr id="rentalAgreementFile_tr_1" style="display: none;">
- <th width = "30%">
- 租赁住房协议或拆迁补偿协议
- </th>
- <td width = "70%">
- <span id="rentalAgreementFile_detail_1"></span>
- </td>
- </tr>
-
- <tr id="carFile_tr" style="display: none;">
- <th>车辆保险单</th>
- <td>
- <span id="carFile_detail_1"></span>
- </td>
- </tr>
-
- <tr id="businessFile_tr" style="display: none;">
- <th>工商材料</th>
- <td>
- <span id="businessFile_detail_1"></span>
- </td>
- </tr>
-
- <tr>
- <th width = "30%">
- 其他住房信息上传
- </th>
- <td width = "70%">
- <span id="otherFile_detail_1"></span>
- </td>
- </tr>
-
- </table>
- </div>
- </div>
- <form id="securityPersonApplyForm" method="post">
- <input type="hidden" id="securityPersonApplyId_update" name="securityPersonApply.id">
- <input type="hidden" id="department" value="${session.user.department.id}">
- <table class="mytable" style="width:100%;">
- <tr>
- <th>审核人</th>
- <td>
- ${session.user.fullName}
- </td>
- <th id="opinion_th">审核意见</th>
- <td>
- <select id="opinion_update" name="opinion" class="easyui-validatebox" required="true">
- <option value="">请选择</option>
- <option value="1">符合</option>
- <option value="2">不符合</option>
- </select>
- </td>
- </tr>
- <tr>
- <th style="color: red;">保障人口</th>
- <td><input style="color: red;" type="text" id="securityNum_update" required="true" name="securityPersonApply.securityNum"/></td>
- </tr>
- <tr>
- <th>审核意见说明</th>
- <td colspan="3" >
- <textarea rows="2" cols="50" id="remark_update" name="remark"></textarea>
- </td>
- </tr>
- </table>
- </form>
- </div>
|