|
@@ -1,4 +1,5 @@
|
|
|
-@layout("/common/_container.html"){
|
|
|
+{extend name="layout/content"}
|
|
|
+{block name="content"}
|
|
|
<style type="text/css">
|
|
|
.spacing {
|
|
|
margin-bottom: 10px;
|
|
@@ -43,185 +44,177 @@
|
|
|
<div class="tabs-container" >
|
|
|
<ul class="nav nav-tabs">
|
|
|
<li class="active"><a data-toggle="tab" href="#tab-1" aria-expanded="true">基本信息</a></li>
|
|
|
- <li id="fileLi" class=""><a data-toggle="tab" href="#tab-2" onclick="TalentInfoInfoDlg.initFileTable()" aria-expanded="false">申报附件</a></li>
|
|
|
- <li class="" style="float: right;"><#button name="打包下载" icon="fa-download" clickFun="TalentInfoInfoDlg.download()"/></li>
|
|
|
+ <li id="fileLi" class=""><a data-toggle="tab" href="#tab-2" onclick="TalentInfoInfoDlg.initICFileTable()" aria-expanded="false">申报附件</a></li>
|
|
|
+ <li class="" style="float: right;">
|
|
|
+ <button type="button" class="btn btn-sm btn-primary " onclick="TalentInfoInfoDlg.download()" >
|
|
|
+ <i class="fa fa-download"></i> 打包下载
|
|
|
+ </button>
|
|
|
+ </li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
<div class="tab-content">
|
|
|
<div id="tab-1" class="tab-pane active">
|
|
|
<div class="panel-body" >
|
|
|
<div class="panel panel-default">
|
|
|
- <div class="panel-heading" onclick="$(this).next().toggle()">申报信息<span style="color: red;">(${item.year}年度)</span></div>
|
|
|
+ <div class="panel-heading" onclick="$(this).next().toggle()">申报信息<span style="color: red;">({$info.apply_year}年度)</span></div>
|
|
|
<div class="panel-body">
|
|
|
- <form id="talentInfoForm" class="form-horizontal" action="${ctxPath}/api/talentInfo/upsert" method="post" enctype="multipart/form-data" target="hiddenIframe">
|
|
|
+ <form id="talentInfoForm" class="form-horizontal" action="/api/talentInfo/upsert" method="post" enctype="multipart/form-data" target="hiddenIframe">
|
|
|
<div class="col-sm-12 form-group-sm">
|
|
|
- <input type="hidden" name="id" id="id" value="${item.id}">
|
|
|
- <input type="hidden" name="source" id="source" value="${item.source}">
|
|
|
- <input type="hidden" name="enterpriseId" id="enterpriseId" value="${item.enterpriseId}">
|
|
|
- <input type="hidden" name="type" id="type" value="${item.type}">
|
|
|
- <input type="hidden" name="checkState" id="checkState" value="${item.checkState}">
|
|
|
- <input type="hidden" id="process" value="${item.process}">
|
|
|
- <input type="hidden" id="companyId" value="${companyId}">
|
|
|
+ <input type="hidden" name="id" id="id" value="{$info.id}">
|
|
|
+ <input type="hidden" name="type" id="type" value="{$info.enterpriseType}">
|
|
|
+ <input type="hidden" name="checkState" id="checkState" value="{$info.checkState}">
|
|
|
+ <input type="hidden" name="enterprise_tag" id="enterprise_tag" value="{$info.enterpriseTag}">
|
|
|
<div class="row">
|
|
|
<div class="col-sm-11">
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>姓名</label>
|
|
|
- <input type="text" class="form-control" id="name" name="name" value="${item.name}"/>
|
|
|
+ <input type="text" class="form-control" id="name" name="name" value="{$info.name}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
- <label class=" control-label spacing"><span style="color: red">*</span>性别</label>
|
|
|
- <select class="form-control" id="sex" name="sex" value="${item.sex}">
|
|
|
- <option value="">请选择</option>
|
|
|
- <option value="1">男</option>
|
|
|
- <option value="2">女</option>
|
|
|
+ <label class=" control-label spacing"><span style="color: red">*</span>证件类别</label>
|
|
|
+ <select class="form-control" id="card_type" name="card_type" value="{$info.card_type}">
|
|
|
+ {eq name="info.card_type" value="1"}<option value="1">身份证</option>{/eq}
|
|
|
+ {eq name="info.card_type" value="2"}<option value="2">通行证</option>{/eq}
|
|
|
+ {eq name="info.card_type" value="3"}<option value="3">护照</option>{/eq}
|
|
|
</select>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
- <label class=" control-label spacing"><span style="color: red">*</span>国籍/地区</label>
|
|
|
- <input class="form-control" id="nationality" name="nationality" value="${item.nationalityName}">
|
|
|
+ <label class=" control-label spacing"><span style="color: red">*</span>证件号码</span></label>
|
|
|
+ <input type="text" class="form-control" id="card_number" name="card_number" value="{$info.card_number}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
- <label class=" control-label spacing"><span style="color: red">*</span>籍贯</label>
|
|
|
- <input class="form-control" id="provinceCode" name="provinceCode" value="${item.provinceName}${item.cityName}${item.countyName}"/>
|
|
|
+ <label class=" control-label spacing"><span style="color: red">*</span>性别</label>
|
|
|
+ <input type="text" class="form-control" value="{eq name='info.sex' value='1'}男{else/}女{/eq}" id="sex"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
- <label class=" control-label spacing"><span style="color: red">*</span>民族</label>
|
|
|
- <input class="form-control" id="nation" name="nation" value="${item.nationName}"/>
|
|
|
+ <label class=" control-label spacing"><span style="color: red">*</span>出生日期</label>
|
|
|
+ <input type="text" class="form-control date" id="birthday" name="birthday" value="{$info.birthday}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
- <label class=" control-label spacing"><span style="color: red">*</span>政治面貌</label>
|
|
|
- <input class="form-control" id="politics" name="politics" value="${item.politicsName}"/>
|
|
|
+ <label class=" control-label spacing"><span style="color: red">*</span>国籍/地区</label>
|
|
|
+ <input class="form-control" id="nationality" name="nationality" value="{$info.nationalityName}">
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
- <label class=" control-label spacing"><span style="color: red">*</span>出生日期</label>
|
|
|
- <input type="text" class="form-control date" id="birthday" name="birthday" value="${item.birthday}"/>
|
|
|
+ <label class=" control-label spacing"><span style="color: red">*</span>籍贯</label>
|
|
|
+ <input class="form-control" id="provinceCode" name="province" value="{$info.provinceName}{$info.cityName}{$info.countyName}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
- <label class=" control-label spacing"><span style="color: red">*</span>证件类别</label>
|
|
|
- <select type="text" class="form-control" id="cardType" name="cardType" value="${item.cardType}">
|
|
|
- <option value="">请选择</option>
|
|
|
- <option value="1">身份证</option>
|
|
|
- <option value="2">通行证</option>
|
|
|
- <option value="3">护照</option>
|
|
|
- </select>
|
|
|
+ <label class=" control-label spacing"><span style="color: red">*</span>民族</label>
|
|
|
+ <input class="form-control" id="nation" name="nation" value="{$info.nationName}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
- <label class=" control-label spacing"><span style="color: red">*</span>证件号码</span></label>
|
|
|
- <input type="text" class="form-control" id="idCard" name="idCard" value="${item.idCard}"/>
|
|
|
+ <label class=" control-label spacing"><span style="color: red">*</span>政治面貌</label>
|
|
|
+ <input class="form-control" id="politics" name="politics" value="{$info.politicsName}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>是否曾被相关主管部门列为失信个人</label>
|
|
|
- <select class="form-control" id="breakFaith" name="breakFaith" value="${item.breakFaith}">
|
|
|
- <option value="2">否</option>
|
|
|
- <option value="1">是</option>
|
|
|
- </select>
|
|
|
+ <input type="text" class="form-control" id="break_faith" name="break_faith" value="{eq name='info.break_faith' value='2'}否{else/}是{/eq}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>手机号码</label>
|
|
|
- <input type="text" class="form-control" id="phone" name="phone" value="${item.phone}"/>
|
|
|
+ <input type="text" class="form-control" id="phone" name="phone" value="{$info.phone}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>电子邮箱</label>
|
|
|
- <input type="text" class="form-control" id="email" name="email" value="${item.email}"/>
|
|
|
+ <input type="text" class="form-control" id="email" name="email" value="{$info.email}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>最高学历</label>
|
|
|
- <input class="form-control" id="highEducation" name="highEducation" value="${item.educationName}">
|
|
|
+ <select class="form-control" id="highest_degree" name="highest_degree" value="{$info.highest_degree}">
|
|
|
+ <option value="" selected="true">{$info.highestDegreeName}</option>
|
|
|
+ </select>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>毕业学校</label>
|
|
|
- <input type="text" class="form-control" id="graduateSchool" name="graduateSchool" value="${item.graduateSchool}"/>
|
|
|
+ <input type="text" class="form-control" id="graduate_school" name="graduate_school" value="{$info.graduate_school}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>专业</label>
|
|
|
- <input type="text" class="form-control" id="major" name="major" value="${item.major}"/>
|
|
|
+ <input type="text" class="form-control" id="major" name="major" value="{$info.major}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing">是否有留学经历</label>
|
|
|
- <select class="form-control" id="studyAbroad" name="studyAbroad" value="${item.studyAbroad}">
|
|
|
- <option value="2">否</option>
|
|
|
- <option value="1">是</option>
|
|
|
- </select>
|
|
|
+ <input type="text" class="form-control" id="study_abroad" name="study_abroad" value="{eq name='info.study_abroad' value='2'}否{else/}是{/eq}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>单位名称</label>
|
|
|
- <input type="text" class="form-control" id="companyName" name="companyName" readonly="readonly" value="${item.enterpriseName}" />
|
|
|
+ <input type="text" class="form-control" id="companyName" name="companyName" readonly="readonly" value="{$info.enterpriseName}" />
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>所属镇街</label>
|
|
|
- <input class="form-control" id="address" name="address" value="${item.streetName}"/>
|
|
|
+ <input class="form-control" id="address" name="address" value="{$info.streetName}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>职务</label>
|
|
|
- <input type="text" class="form-control" id="post" name="post" value="${item.post}"/>
|
|
|
+ <input type="text" class="form-control" id="position" name="position" value="{$info.position}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>入职时间</label>
|
|
|
- <input type="text" class="form-control date" id="entryTime" name="entryTime" value="${item.entryTime}"/>
|
|
|
- </div>
|
|
|
- <div class="rowGroup col-sm-4">
|
|
|
- <label class=" control-label spacing"><span style="color: red">*</span>工作合同开始时间</label>
|
|
|
- <input type="text" class="form-control date" id="startTime" name="startTime" value="${item.startTime}"/>
|
|
|
+ <input type="text" class="form-control date" id="cur_entry_time" name="cur_entry_time" value="{$info.cur_entry_time}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
- <label class=" control-label spacing"><span style="color: red">*</span>工作合同结束时间</label>
|
|
|
- <input type="text" class="form-control date" id="endTime" name="endTime" value="${item.endTime}"/>
|
|
|
+ <label class=" control-label spacing"><span style="color: red">*</span>工作合同起止时间</label>
|
|
|
+ <input type="text" class="form-control date" id="labor_contract_rangetime" name="labor_contract_rangetime" value="{$info.labor_contract_rangetime}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>人才层次</label>
|
|
|
- <input class="form-control" id="talentArrange" name="talentArrange" value="${item.talentArrangeName}" />
|
|
|
+ <select class="form-control" id="talent_arrange" name="talent_arrange">
|
|
|
+ <option value="">{$info.talentArrangeName}</option>
|
|
|
+ </select>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>认定条件</label>
|
|
|
- <input class="form-control" id="identifyCondition" name="identifyCondition" value="${item.identifyConditionText}" title="${item.identifyConditionText}">
|
|
|
+ <select class="form-control" id="talent_condition">
|
|
|
+ <option value="{$info.talent_condition}">{$info.talentConditionName}</option>
|
|
|
+ </select>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>认定条件名称</label>
|
|
|
- <input type="text" class="form-control" id="identifyConditionName" name="identifyConditionName" value="${item.identifyConditionName}" title="${item.identifyConditionName}"/>
|
|
|
+ <input type="text" class="form-control" id="identifyConditionName" name="identifyConditionName" value="{$info.identifyConditionName}" title="{$info.identifyConditionName}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>认定条件证书取得时间</label>
|
|
|
- <input type="text" class="form-control date" id="identifyGetTime" name="identifyGetTime" value="${item.identifyGetTime}"/>
|
|
|
+ <input type="text" class="form-control date" id="identifyGetTime" name="identifyGetTime" value="{$info.identifyGetTime}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing">职称</label>
|
|
|
- <input type="text" class="form-control" id="title" name="title" value="${item.title}"/>
|
|
|
+ <input type="text" class="form-control" id="title" name="title" value="{$info.title}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing">国家职业资格</label>
|
|
|
- <input type="text" class="form-control" id="professionalQualifications" name="professionalQualifications" value="${item.professionalQualifications}"/>
|
|
|
+ <input type="text" class="form-control" id="pro_qua" name="pro_qua" value="{$info.pro_qua}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>开户银行</label>
|
|
|
- <input type="text" class="form-control" onchange="TalentInfoInfoDlg.bankChange()" id="bank" name="bank" value="${item.bank}" placeholder="XX银行"/>
|
|
|
+ <input type="text" class="form-control" id="bank" name="bank" value="{$info.bank}" placeholder="XX银行"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>开户银行网点</label>
|
|
|
- <input type="text" class="form-control" id="bankNetwork" name="bankNetwork" value="${item.bankNetwork}" PLACEHOLDER="XX银行XX省XX市XX支行/分行/分理处"/>
|
|
|
+ <input type="text" class="form-control" id="bankNetwork" name="bank_branch_name" value="{$info.bank_branch_name}" PLACEHOLDER="XX银行XX省XX市XX支行/分行/分理处"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-4">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>银行账号</label>
|
|
|
- <input type="text" class="form-control" id="bankAccount" name="bankAccount" value="${item.bankAccount}"/>
|
|
|
+ <input type="text" class="form-control" id="bank_account" name="bank_account" value="{$info.bank_account}"/>
|
|
|
</div>
|
|
|
<div class="rowGroup col-sm-8">
|
|
|
<label class=" control-label spacing">备注</label>
|
|
|
- <input type="text" class="form-control" id="description" name="description" value="${item.description}"/>
|
|
|
+ <input type="text" class="form-control" id="description" name="description" value="{$info.description}"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="col-sm-1">
|
|
|
- <img id="photoImg" src="${item.photo}" style="height: 110px;width: 76px;">
|
|
|
+ <img id="photoImg" src="{$info.headimgurl|getStoragePath}" style="height:147px;width:105px;">
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="row">
|
|
|
<div class="rowGroup col-sm-12">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>教育背景及工作简历</label>
|
|
|
- <textarea style="overflow: auto;word-break: break-all; " class="form-control" id="educationAndResume" name="educationAndResume" rows="2">${item.educationAndResume}</textarea>
|
|
|
+ <textarea style="overflow: auto;word-break: break-all; " class="form-control" id="education" name="education" rows="2">{$info.education}</textarea>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="row">
|
|
|
<div class="rowGroup col-sm-12">
|
|
|
<label class=" control-label spacing"><span style="color: red">*</span>主要业绩及取得的荣誉</label>
|
|
|
- <textarea style="overflow: auto;word-break: break-all; " class="form-control" id="mainHonours" name="mainHonours" rows="2">${item.mainHonours}</textarea>
|
|
|
+ <textarea style="overflow: auto;word-break: break-all; " class="form-control" id="experience" name="experience" rows="2">{$info.experience}</textarea>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -233,8 +226,14 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div id="tab-2" class="tab-pane ">
|
|
|
- <#table id="fileTable"/>
|
|
|
+ <div id="tab-2" class="tab-pane ">
|
|
|
+ <table id="fileTable" class="table-condensed" style="font-size: 10px;table-layout: fixed!important;" data-mobile-responsive="true" data-click-to-select="true">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th data-field="selectItem" data-checkbox="true"></th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ </table>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -242,121 +241,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-<!--审核模态框-->
|
|
|
-<!--<div class="modal fade " id="commonModal" 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="basicModalLabel">审核</h4>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- <div class="modal-body">-->
|
|
|
-<!-- <form id="commonCheckForm">-->
|
|
|
-<!-- <div class="form-group">-->
|
|
|
-<!-- <label for="checkState" class="control-label">审核状态</label>-->
|
|
|
-<!-- <select class="form-control" id="checkStateModal" onchange="TalentInfoInfoDlg.toggledepField()">-->
|
|
|
-<!-- <option value=""></option>-->
|
|
|
-<!-- <option value="3">审核通过</option>-->
|
|
|
-<!-- <option value="2">审核驳回</option>-->
|
|
|
-<!-- </select>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- <div class="form-group">-->
|
|
|
-<!-- <label for="checkMsg" class="control-label">审核意见</label>-->
|
|
|
-<!-- <textarea class="form-control" id="checkMsg"></textarea>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </form>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- <div class="modal-footer">-->
|
|
|
-<!-- <button type="button" class="btn btn-primary" onclick="TalentInfoInfoDlg.commonCheck()">提交</button>-->
|
|
|
-<!-- <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!--</div>-->
|
|
|
-
|
|
|
-<!--<!–审核模态框–>-->
|
|
|
-<!--<div class="modal fade " id="firstModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">-->
|
|
|
-<!-- <div class="modal-dialog modal-lg" 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="firstModalLabel">初级审核</h4>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- <div class="modal-body">-->
|
|
|
-<!-- <form id="firstCheckForm">-->
|
|
|
-<!-- <div class="form-group">-->
|
|
|
-<!-- <label for="checkState" class="control-label">审核状态</label>-->
|
|
|
-<!-- <select class="form-control" id="checkStateFirstModal" onchange="TalentInfoInfoDlg.toggleField()">-->
|
|
|
-<!-- <option value=""></option>-->
|
|
|
-<!-- <option value="3">审核通过</option>-->
|
|
|
-<!-- <option value="2">审核驳回</option>-->
|
|
|
-<!-- <option value="-1">审核不通过</option>-->
|
|
|
-<!-- </select>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- <div class="form-group">-->
|
|
|
-<!-- <label for="checkMsg" class="control-label">审核意见</label>-->
|
|
|
-<!-- <textarea class="form-control" id="checkMsgFirst"></textarea>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- <div class="form-group" id="field" style="display: none">-->
|
|
|
-<!-- <label for="checkMsg" class="control-label">可修改字段</label>-->
|
|
|
-<!-- <div id="field_info">-->
|
|
|
-<!-- <ul>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="name"><span>姓名</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="sex"><span>性别</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="birthday"><span>出生日期</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="industryField"><span>行业领域</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="address"><span>所属镇街</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="nationality"><span>国籍/地区</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="provinceCode"><span>籍贯省</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="cityCode"><span>籍贯市</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="countyCode"><span>籍贯县</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="cardType"><span>证件类型</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="idCard"><span>证件号码</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="nation"><span>民族</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="politics"><span>政治面貌</span></li>-->
|
|
|
-<!-- <li style="width:20.5%"><input type="checkbox" value="entryTime"><span>本单位入职时间</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="post"><span>职务</span></li>-->
|
|
|
-<!-- <li style="width:20.5%"><input type="checkbox" value="startTime"><span>工作合同开始时间</span></li>-->
|
|
|
-<!-- <li style="width:20.5%"><input type="checkbox" value="endTime"><span>工作合同结束时间</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="highEducation"><span>最高学历</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="major"><span>专业</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="title"><span>职称</span></li>-->
|
|
|
-<!-- <li style="width:20.5%"><input type="checkbox" value="professionalQualifications"><span>国家职业资格</span></li>-->
|
|
|
-<!-- <li style="width:20.5%"><input type="checkbox" value="studyAbroad"><span>是否有留学经历</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="phone"><span>手机号码</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="email"><span>电子邮箱</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="bank"><span>开户银行</span></li>-->
|
|
|
-<!-- <li style="width:20.5%"><input type="checkbox" value="bankNetwork"><span>开户银行网点</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="bankNumber"><span>银行行号</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="bankAccount"><span>银行账号</span></li>-->
|
|
|
-<!-- <li style="width:31%"><input type="checkbox" value="breakFaith"><span>曾被相关主管部门列为失信个人</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="talentArrange"><span>人才层次</span></li>-->
|
|
|
-<!-- <li style="width:10%"><input type="checkbox" value="identifyCondition"><span>认定条件</span></li>-->
|
|
|
-<!-- <li style="width:20.5%"><input type="checkbox" value="identifyConditionName"><span>认定条件名称</span></li>-->
|
|
|
-<!-- <li style="width:20.5%"><input type="checkbox" value="identifyGetTime"><span>认定条件证书取得时间</span></li>-->
|
|
|
-<!-- <li style="width:20.5%"><input type="checkbox" value="educationAndResume"><span>教育背景及工作简历</span></li>-->
|
|
|
-<!-- <li style="width:20.5%"><input type="checkbox" value="mainHonours"><span>主要业绩及取得的荣誉</span></li>-->
|
|
|
-<!-- </ul>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- <label for="checkMsg" class="control-label">可修改附件</label>-->
|
|
|
-<!-- <div id="field_file">-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- <div class="form-group" style="text-align: center">-->
|
|
|
-<!-- <button type="button" class="btn btn-primary" onclick="TalentInfoInfoDlg.checkAll()">全选</button>-->
|
|
|
-<!-- <button type="button" class="btn btn-success" onclick="TalentInfoInfoDlg.unCheckAll()">反选</button>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </form>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- <div class="modal-footer">-->
|
|
|
-<!-- <button type="button" class="btn btn-primary" onclick="TalentInfoInfoDlg.firstCheck()">提交</button>-->
|
|
|
-<!-- <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!--</div>-->
|
|
|
-<!--<script src="${ctxPath}/static/modular/talentIdentify/talentInfo/talentInfo_common_check.js"></script>-->
|
|
|
<script type="text/javascript">
|
|
|
- document.write('<script src="${ctxPath}/static/modular/talentIdentify/talentInfo/talentInfo_common_check.js?v='+(new Date()).getTime()+'"><\/script>');
|
|
|
+ document.write('<script src="/static/modular/talentIdentify/talentInfo/talentInfo_common_check.js?v=' + (new Date()).getTime() + '"><\/script>');
|
|
|
</script>
|
|
|
-@}
|
|
|
+{/block}
|