|
@@ -0,0 +1,575 @@
|
|
|
+@layout("/common/_container.html"){
|
|
|
+<style type="text/css">
|
|
|
+ #talentInfoForm label {
|
|
|
+ font-size: xx-small;
|
|
|
+ }
|
|
|
+
|
|
|
+ #field ul li{
|
|
|
+ list-style: none;
|
|
|
+ display:inline-block;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ }
|
|
|
+ #field ul li input{
|
|
|
+ vertical-align:middle;
|
|
|
+ margin-top:1px;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+<div class="row">
|
|
|
+ <div class="col-sm-12">
|
|
|
+ <div class="ibox float-e-margins">
|
|
|
+ <div class="ibox-title">
|
|
|
+ <h5>人才认定申报</h5>
|
|
|
+ </div>
|
|
|
+ <div class="ibox-content">
|
|
|
+ <div class="row row-lg">
|
|
|
+ <div class="col-sm-12">
|
|
|
+ <input type="hidden" id="usertype" value="${user.type}">
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#NameCon id="name" name="姓名" />
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#NameCon id="idCard" name="证件号码" />
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="sex" name="性别" >
|
|
|
+ <option value=""></option>
|
|
|
+ <option value="1">男</option>
|
|
|
+ <option value="2">女</option>
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="nation" name="民族" >
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="row highSearch" style="display: none">
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="nationality" name="国籍/地区" >
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="provinceCode" name="籍贯省" >
|
|
|
+ <option value="">请选择</option>
|
|
|
+ @for(item in provinceList){
|
|
|
+ <option value="${item.code}">${item.name}</option>
|
|
|
+ @}
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="politics" name="政治面貌" >
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="enterpriseId" name="单位名称" >
|
|
|
+ <option value="">请选择</option>
|
|
|
+ @for(item in enterpriseList){
|
|
|
+ <option value="${item.id}">${item.name}</option>
|
|
|
+ @}
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="industryField" name="行业领域" >
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3"
|
|
|
+ @if(user.type==2){
|
|
|
+ style="display: none"
|
|
|
+ @}
|
|
|
+ >
|
|
|
+ <#SelectCon id="source" name="申报来源">
|
|
|
+ <option value=""></option>
|
|
|
+ <option value="1">经我市申报并已经成功入选的泉州高层次人才</option>
|
|
|
+ <option value="2">从我市以外的其他县(市、区)变动到我市工作的泉州市高层次人才</option>
|
|
|
+ <option value="3">依据《晋江市优秀人才补充认定标准》申报认定</option>
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3"
|
|
|
+ @if(user.type==2){
|
|
|
+ style="display: none"
|
|
|
+ @}
|
|
|
+ >
|
|
|
+ <#SelectCon id="fromCity" name="入选来源县市">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ @for(item in fromCityList){
|
|
|
+ <option value="${item.code}">${item.name}</option>
|
|
|
+ @}
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3"
|
|
|
+ @if(user.type==2){
|
|
|
+ style="display: none"
|
|
|
+ @}
|
|
|
+ >
|
|
|
+ <#SelectCon id="introductionMode" name="引进方式">
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="highEducation" name="最高学历" >
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#NameCon id="major" name="专业" />
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#NameCon id="title" name="职称" />
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="studyAbroad" name="是否有留学经历" >
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option value="2">否</option>
|
|
|
+ <option value="1">是</option>
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#NameCon id="phone" name="手机号码" />
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#NameCon id="email" name="电子邮箱" />
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="talentType" name="人才标签" >
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="talentArrange" name="人才层次" >
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="identifyCondition" name="认定条件" >
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="address" name="所属镇街" >
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="active" name="离职状态" >
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option value="1">在职</option>
|
|
|
+ <option value="2">离职</option>
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="checkState" name="审核状态">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option value="-1">审核不通过</option>
|
|
|
+ <option value="35">已通过</option>
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="isPublic" name="公示状态" >
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option value="1">待核查征信</option>
|
|
|
+ <option value="2">待公示</option>
|
|
|
+ <option value="3">公示中</option>
|
|
|
+ <option value="4">待公布</option>
|
|
|
+ <option value="5">待发证</option>
|
|
|
+ <option value="6">已发证</option>
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#SelectCon id="breakFaith" name="是否失信" >
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option value="2">否</option>
|
|
|
+ <option value="1">是</option>
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <#NameCon id="year" name="申报年度" />
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3" style="display: none">
|
|
|
+ <#SelectCon id="isEffect" name="是否有效">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option value="1">有效</option>
|
|
|
+ <option value="3">人才证书过期</option>
|
|
|
+ <option value="4">已取消</option>
|
|
|
+ </#SelectCon>
|
|
|
+ </div>
|
|
|
+<div class="col-sm-3" style="display: none">
|
|
|
+ <div class="input-group ">
|
|
|
+ <div class="input-group-btn">
|
|
|
+ <button data-toggle="dropdown" class="btn btn-white dropdown-toggle" type="button">公布入选月份
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <input type="text" class="form-control time" id="identifyMonth" name="identifyMonth"/>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+ </div>
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-sm-12" style="text-align: center">
|
|
|
+ <button type="button" style="cursor:pointer;" id="openSearch" onclick="$('.highSearch,#closeSearch').show();$(this).hide();" class="btn btn-sm btn-primary glyphicon glyphicon-eye-open" id="open-but">打开高级搜索</button>
|
|
|
+ <button type="button" style="cursor:pointer;display: none;" id="closeSearch" onclick="$('#openSearch').show();$('.highSearch').hide();$(this).hide();" class="btn btn-sm btn-danger glyphicon glyphicon-eye-close" id="close-but">关闭高级搜索</button>
|
|
|
+ <button type="button" style="cursor:pointer;" class="btn btn-sm btn-info glyphicon glyphicon-search" onclick="TalentInfo.search()">搜索</button>
|
|
|
+ <button type="button" style="cursor:pointer;" class="btn btn-sm btn-warning glyphicon glyphicon-repeat" onclick="TalentInfo.reset()">重置</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="hidden-xs" id="TalentInfoTableToolbar" role="group">
|
|
|
+ @if(shiro.hasPermission("/talentInfo/prepareHczx")){
|
|
|
+ <#button name="导出核查征信" icon="fa-file-excel-o" clickFun="TalentInfo.showDataCheckModal(1)" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/hczxReject")){
|
|
|
+ <#button name="征信失信" icon="fa-warning" clickFun="TalentInfo.showHczxRejectModal()" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/hczxPass")){
|
|
|
+ <#button name="征信通过" icon="fa-check" clickFun="TalentInfo.showDataCheckModal(2)" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/publicExportBefore")){
|
|
|
+ <#button name="公示预览" icon="fa-file-excel-o" clickFun="TalentInfo.showDataCheckModal(7)" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/preparePublic")){
|
|
|
+ <#button name="公示" icon="fa-opencart" btnCss="danger" clickFun="TalentInfo.showDataCheckModal(3)" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/preparePublicExport")){
|
|
|
+ <#button name="公示导出" icon="fa-file-excel-o" clickFun="TalentInfo.publicExport(1)" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/prepareCheck")){
|
|
|
+ <#button name="公示再审核" icon="fa-check-square-o" clickFun="TalentInfo.afterCheck()" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/publicPass")){
|
|
|
+ <#button name="公示通过" icon="fa-compass" clickFun="TalentInfo.showDataCheckModal(4)" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/publishExportBefore")){
|
|
|
+ <#button name="公布预览" icon="fa-television" clickFun="TalentInfo.showDataCheckModal(8)" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/preparePublish")){
|
|
|
+ <#button name="公布" icon="fa-television" btnCss="danger" clickFun="TalentInfo.showDataCheckModal(5)" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/preparePublishExport")){
|
|
|
+ <#button name="公布导出" icon="fa-file-excel-o" clickFun="TalentInfo.publicExport(2)" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/prepareCanclePublish")){
|
|
|
+ <#button name="撤销公布" icon="fa-reply" clickFun="TalentInfo.canclePublish()" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/prepareCertification")){
|
|
|
+ <#button name="发证" icon="fa-newspaper-o" clickFun="TalentInfo.showDataCheckModal(6)" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/prepareExport")){
|
|
|
+ <#button name="导出" icon="fa-file-excel-o" clickFun="TalentInfo.showExportModal()" space="false"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/prepareDownload")){
|
|
|
+ <#button name="下载" icon="fa-download" clickFun="TalentInfo.download()"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/prepareDownload")){
|
|
|
+ <#button name="批量下载头像" icon="fa-cloud-download" clickFun="TalentInfo.downloadPhoto()"/>
|
|
|
+ @}
|
|
|
+ @if(shiro.hasPermission("/talentInfo/libraryDetail")){
|
|
|
+ <#button name="查看" icon="fa-eye" clickFun="TalentInfo.openTalentInfoDetail()" space="false"/>
|
|
|
+ @}
|
|
|
+ </div>
|
|
|
+ <#table id="TalentInfoTable"/>
|
|
|
+ <form id="publicForm" action="${ctxPath}/talentInfo/talentInfoPublic" target="hiddenIframe" style="display: none">
|
|
|
+ <input name="type" id="type">
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+<!--核查征信导入模态框-->
|
|
|
+<div class="modal fade " id="hczxModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
|
|
|
+ <div class="modal-dialog" role="document">
|
|
|
+ <div class="modal-content animated flipInY">
|
|
|
+ <div class="modal-header">
|
|
|
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
+ <h4 class="modal-title" id="hczxModalLabel">导入核查征信结果文件</h4>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <form id="importHczx-form" action="${ctxPath}/talentInfoImport/importHczx" method="post" enctype="multipart/form-data" target="hiddenIframe">
|
|
|
+ <input type="file" id="file" name="file" onchange="$('#fileName').val($('#file').val());" class="hidden">
|
|
|
+ <div class="form-group row">
|
|
|
+ <div class="col-sm-1"></div>
|
|
|
+ <div class="col-sm-11">
|
|
|
+ <div class="input-group">
|
|
|
+ <input type="text" class="form-control" id="fileName" name="fileName" placeholder="请选择需要上传的附件" readonly="readonly" >
|
|
|
+ <span class="input-group-btn">
|
|
|
+ <button class="btn btn-secondary" type="button" onclick="$('#file').click()"><i class="fa fa-search"></i>选择文件</button>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button type="button" class="btn btn-primary" onclick="TalentInfo.importHczxSubmit()">提交</button>
|
|
|
+ <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+
|
|
|
+<!--公示再审核模态框-->
|
|
|
+<div class="modal fade " id="checkModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
|
|
|
+ <div class="modal-dialog" role="document" >
|
|
|
+ <div class="modal-content animated flipInY">
|
|
|
+ <div class="modal-header">
|
|
|
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
+ <h4 class="modal-title" id="rejectModalLabel">公示再审核</h4>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <form id="checkForm" class="form-horizontal">
|
|
|
+ <input type="hidden" id="mainId" name="id">
|
|
|
+ <div class="form-group">
|
|
|
+ <div class="row" style="margin-bottom: 10px;">
|
|
|
+ <label class="col-sm-2 control-label">审核状态</label>
|
|
|
+ <div class="col-sm-10">
|
|
|
+ <select id="checkStateAfter" name="checkState" class="form-control">
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div class="row">
|
|
|
+ <label class="col-sm-2 control-label">审核意见</label>
|
|
|
+ <div class="col-sm-10">
|
|
|
+ <textarea id="msg" name="msg" class="form-control"></textarea>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button type="button" class="btn btn-primary" onclick="TalentInfo.afterCheckSubmit()">提交</button>
|
|
|
+ <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+<!--需要核查征信的名单-->
|
|
|
+<div class="modal fade " id="exportCommonModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
|
|
|
+ <div class="modal-dialog modal-lg" role="document" style="min-width: 1200px;">
|
|
|
+ <div class="modal-content animated flipInY">
|
|
|
+ <div class="modal-header">
|
|
|
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
+ <h4 class="modal-title" id="exportCommonModalLabel">待核查征信名单</h4>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <form class="form-horizontal" style="padding-bottom: 5px;">
|
|
|
+ <div class="form-group-sm ">
|
|
|
+ <div class="row">
|
|
|
+ <div class="rowGroup">
|
|
|
+ <label class="col-sm-1 control-label">姓名</label>
|
|
|
+ <div class="col-sm-3 spacing">
|
|
|
+ <input type="text" class="form-control input-sm" id="pub_name" name="name" >
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="rowGroup">
|
|
|
+ <label class="col-sm-1 control-label">性别</label>
|
|
|
+ <div class="col-sm-3 spacing">
|
|
|
+ <select class="form-control input-sm" id="pub_sex" name="sex" >
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option value="1">男</option>
|
|
|
+ <option value="2">女</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="rowGroup">
|
|
|
+ <label class="col-sm-1 control-label">审核状态</label>
|
|
|
+ <div class="col-sm-3 spacing">
|
|
|
+ <select type="text" class="form-control input-sm" id="pub_checkState" name="checkState" >
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option value="-1">审核不通过</option>
|
|
|
+ <option value="35">已通过</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ <div class="toolbar" style="padding-bottom: 5px;text-align: center">
|
|
|
+ <button type="button" class="btn btn-sm btn-info" onclick="TalentInfo.prepareSearch()"><i class="fa fa-search"></i>搜索</button>
|
|
|
+ <button type="button" class="btn btn-sm btn-danger" onclick="TalentInfo.prepareReset()"><i class="fa fa-trash"></i>重置</button>
|
|
|
+ <button id="checkAll" class="btn btn-secondary btn-sm btn-success"><i class="fa fa-check-square-o"></i>全选</button>
|
|
|
+ <button id="uncheckAll" class="btn btn-secondary btn-sm btn-danger"><i class="fa fa-ban"></i>取消全选</button>
|
|
|
+ </div>
|
|
|
+ <table id="dataTable" class="table-condensed table-sm" style="font-size: 12px;"></table>
|
|
|
+ <form id="hczxForm" style="padding-top: 10px;">
|
|
|
+ <div class="form-group form-inline">
|
|
|
+ <label class=" control-label">是否发送短信</label>
|
|
|
+ <input type="radio" name="isSend" id="isSend1" value="1" onclick="TalentInfo.toggleMessage()" checked="checked"> 是
|
|
|
+ <input type="radio" name="isSend" id="isSend2" value="2" onclick="TalentInfo.toggleMessage()"> 否
|
|
|
+ </div>
|
|
|
+ <div class="form-group form-inline" id="messageEdit">
|
|
|
+ <label class=" control-label" style="line-height: 40px;"><span style="color: red;">编辑短信内容</span>:您好!您提交申请的
|
|
|
+ <input type="text" class="form-control input-sm" id="typeName" value="${message.typeName}" maxlength="20">已完成初步审核,现通过
|
|
|
+ <input type="text" class="form-control input-sm" id="web" placeholder="公示平台(如聚财网/人才晋江公众号)" value="${message.address}" maxlength="40">将审核结果予以公示,公示时间
|
|
|
+ <input type="text" class="form-control input-sm time" id="publicStartTime" maxlength="15">至<input type="text" class="form-control input-sm time" id="publicEndTime" maxlength="15">。公示期间如有异议,请及时向
|
|
|
+ <input type="text" class="form-control input-sm" id="dep" placeholder="xx单位/部门" value="${message.dep}" maxlength="30">反映。电话
|
|
|
+ <input type="text" class="form-control input-sm" id="fyphone" value="${message.phone}" maxlength="30">,电子邮箱
|
|
|
+ <input type="text" class="form-control input-sm" id="fyemail" value="${message.email}" maxlength="20">。
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button type="button" class="btn btn-primary" id="hczxButton" onclick="TalentInfo.checkExport()">导出</button>
|
|
|
+ <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+<!--核查征信不通过-->
|
|
|
+<div class="modal fade " id="hczxRejectModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
|
|
|
+ <div class="modal-dialog" role="document">
|
|
|
+ <div class="modal-content animated flipInY">
|
|
|
+ <div class="modal-header">
|
|
|
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
+ <h4 class="modal-title" id="hczxRejectModalLabel">核查征信不通过</h4>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <form id="hczxRejectForm" class="form-horizontal">
|
|
|
+ <input type="hidden" name="hczxId" id="hczxId">
|
|
|
+ <div class="form-group">
|
|
|
+ <div class="row">
|
|
|
+ <label class="col-sm-2 control-label">审核意见</label>
|
|
|
+ <div class="col-sm-10">
|
|
|
+ <textarea id="hczxMsg" name="hczxMsg" class="form-control"></textarea>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button type="button" class="btn btn-primary" onclick="TalentInfo.hczxReject()">提交</button>
|
|
|
+ <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+<!--导出模态框-->
|
|
|
+<div class="modal fade " id="commonExportModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
|
|
|
+ <div class="modal-dialog modal-lg" role="document" style="min-width: 1000px">
|
|
|
+ <div class="modal-content animated flipInY">
|
|
|
+ <div class="modal-header">
|
|
|
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
+ <h4 class="modal-title" id="firstModalLabel">导出</h4>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <form id="exportForm" action="${ctxPath}/talentInfoExport/publicExport" target="hiddenIframe" class="form-horizontal">
|
|
|
+ <div class="form-group" id="field">
|
|
|
+ <div id="field_info">
|
|
|
+ <ul>
|
|
|
+ @if(user.type==1){
|
|
|
+ <li style="width:24%"><input type="checkbox" value="year"><span>申报年度</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="name"><span>姓名</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="sexName"><span>性别</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="birthday"><span>出生日期</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="nationalityName"><span>国籍/地区</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="provinceName"><span>籍贯省</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="cityName"><span>籍贯市</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="countyName"><span>籍贯县</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="nationName"><span>民族</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="politicsName"><span>政治面貌</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="cardTypeName"><span>证件类型</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="idCard"><span>证件号码</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="firstInJJTime"><span>首次来晋工作时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="enterpriseName"><span>企业名称</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="industryFieldName"><span>行业领域</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="streetName"><span>所属镇街</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="sourceName"><span>申报来源</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="ourCitySourceName"><span>公布入选来源</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="fromCityName"><span>入选来源县市</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="qzBatch"><span>入选名单批次</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="certificateStartTime"><span>泉州高层次人才证书发证日期</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="qzgccrcActiveTime"><span>泉州高层次人才证书的有效期</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="talentArrangeName"><span>人才层次</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="identifyConditionText"><span>认定条件</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="identifyConditionName"><span>认定条件名称</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="identifyGetTime"><span>认定条件证书取得时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="enterpriseTalentTypeName"><span>企业标签</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="talentTypeName"><span>人才标签</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="letterTime"><span>首次来晋行政介绍信时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="introductionModeName"><span>引进方式</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="entryTime"><span>本单位入职时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="post"><span>职务</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="startTime"><span>工作合同开始时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="endTime"><span>工作合同结束时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="lastYearWages"><span>上一年度年薪(元)</span></li>
|
|
|
+ <li style="width:12%"><input type="checkbox" value="educationName"><span>最高学历</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="graduateSchool"><span>毕业院校)</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="major"><span>专业</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="title"><span>职称</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="professionalQualifications"><span>国家职业资格</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="studyAbroadName"><span>是否有留学经历</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="phone"><span>手机号码</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="email"><span>电子邮箱</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="bank"><span>开户银行</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="bankNetwork"><span>开户银行网点</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="bankNumber"><span>银行行号</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="bankAccount"><span>银行账号</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="breakFaithName"><span>曾被相关主管部门列为失信个人</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="identifyMonth"><span>公布入选月份</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="certificateNO"><span>人才编号</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="firstSubmitTime"><span>首次确认提交时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="newSubmitTime"><span>最新确认提交时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="checkStateName"><span>审核状态</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="isPublicName"><span>公示状态</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="checkMsg"><span>审核意见</span></li>
|
|
|
+ @}
|
|
|
+ @if(user.type==2){
|
|
|
+ <li style="width:24%"><input type="checkbox" value="year"><span>申报年度</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="enterpriseName"><span>企业名称</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="name"><span>姓名</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="sexName"><span>性别</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="birthday"><span>出生日期</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="nationName"><span>民族</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="cardTypeName"><span>证件类型</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="idCard"><span>证件号码</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="nationalityName"><span>国籍/地区</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="politicsName"><span>政治面貌</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="streetName"><span>所属镇街</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="provinceName"><span>籍贯省</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="cityName"><span>籍贯市</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="countyName"><span>籍贯县</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="educationName"><span>最高学历</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="graduateSchool"><span>毕业学校</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="major"><span>专业</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="post"><span>职务</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="phone"><span>手机号码</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="email"><span>电子邮箱</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="bank"><span>开户银行</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="bankNetwork"><span>开户银行网点</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="bankAccount"><span>银行账号</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="startTime"><span>工作合同开始时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="endTime"><span>工作合同结束时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="entryTime"><span>本单位入职时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="talentArrangeName"><span>人才层次</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="identifyConditionText"><span>认定条件</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="identifyConditionName"><span>认定条件名称</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="identifyGetTime"><span>认定条件证书取得时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="title"><span>职称</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="professionalQualifications"><span>国家职业资格</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="studyAbroadName"><span>是否有留学经历</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="breakFaithName"><span>曾被相关主管部门列为失信个人</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="identifyMonth"><span>公布入选月份</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="certificateNO"><span>人才编号</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="firstSubmitTime"><span>首次确认提交时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="newSubmitTime"><span>最新确认提交时间</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="checkStateName"><span>审核状态</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="isPublicName"><span>公示状态</span></li>
|
|
|
+ <li style="width:24%"><input type="checkbox" value="checkMsg"><span>审核意见</span></li>
|
|
|
+ @}
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <div class="form-group" style="text-align: center">
|
|
|
+ <button type="button" class="btn btn-primary" onclick="TalentInfo.checkAll()">全选</button>
|
|
|
+ <button type="button" class="btn btn-success" onclick="TalentInfo.unCheckAll()">反选</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button type="button" class="btn btn-primary" onclick="TalentInfo.export(4)">导出</button>
|
|
|
+ <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+<iframe id="hiddenIframe" name="hiddenIframe" style="display: none;"></iframe>
|
|
|
+<!--<script src="${ctxPath}/static/modular/talentIdentify/talentInfo/talentInfo_prepare.js"></script>-->
|
|
|
+<!--<script src="${ctxPath}/static/modular/talentIdentify/talentInfo/talentInfo_common.js"></script>-->
|
|
|
+<script type="text/javascript">
|
|
|
+ document.write('<script src="${ctxPath}/static/modular/talentIdentify/talentInfo/talentInfo_prepare.js?v='+(new Date()).getTime()+'"><\/script>');
|
|
|
+ document.write('<script src="${ctxPath}/static/modular/talentIdentify/talentInfo/talentInfo_common.js?v='+(new Date()).getTime()+'"><\/script>');
|
|
|
+</script>
|
|
|
+@}
|