|
@@ -0,0 +1,255 @@
|
|
|
+{extend name="layout/content"}
|
|
|
+{block name="content"}
|
|
|
+<style type="text/css">
|
|
|
+ .layui-layer-btn .layui-layer-btn1 {
|
|
|
+ border-color: #009688;
|
|
|
+ background-color: #009688;
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+ 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">
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <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" id="talentName" placeholder="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <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" id="idCard" placeholder="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <div class="input-group-btn">
|
|
|
+ <button data-toggle="dropdown" class="btn btn-white dropdown-toggle" type="button">
|
|
|
+ 单位名称
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <select class="form-control" id="enterpriseName">
|
|
|
+ {volist name="enterprises" id="item"}
|
|
|
+ <option value="{$item.id}">{$item.name}</option>
|
|
|
+ {/volist}
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <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" id="oldYear" placeholder="">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <div class="input-group-btn">
|
|
|
+ <button data-toggle="dropdown" class="btn btn-white dropdown-toggle" type="button">
|
|
|
+ 原人才层次
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <select class="form-control" id="oldTalentArrange">
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <div class="input-group-btn">
|
|
|
+ <button data-toggle="dropdown" class="btn btn-white dropdown-toggle" type="button">
|
|
|
+ 原认定条件
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <select class="form-control" id="oldIdentifyCondition">
|
|
|
+ <option value="">--请选择--</option>
|
|
|
+ {volist name="talent_conditions" id="condition"}
|
|
|
+ <option value="{$condition.id}">{$condition.name}</option>
|
|
|
+ {/volist}
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <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="oldIdentifyMonth" name="oldIdentifyMonth"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <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" id="newYear" placeholder="">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <div class="input-group-btn">
|
|
|
+ <button data-toggle="dropdown" class="btn btn-white dropdown-toggle" type="button">
|
|
|
+ 新人才层次
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <select class="form-control" id="newTalentArrange">
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <div class="input-group-btn">
|
|
|
+ <button data-toggle="dropdown" class="btn btn-white dropdown-toggle" type="button">
|
|
|
+ 新认定条件
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <select class="form-control" id="newIdentifyCondition">
|
|
|
+ <option value="">--请选择--</option>
|
|
|
+ {volist name="talent_conditions" id="condition"}
|
|
|
+ <option value="{$condition.id}">{$condition.name}</option>
|
|
|
+ {/volist}
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </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" time="time" formate="date" class="form-control" id="newIdentifyMonth" name="newIdentifyMonth"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <div class="input-group-btn">
|
|
|
+ <button data-toggle="dropdown" class="btn btn-white dropdown-toggle" type="button">审核状态
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <select class="form-control" id="checkState">
|
|
|
+ <option value="">---请选择---</option>
|
|
|
+ <!--<option value="-1">保存未提交</option>
|
|
|
+ <option value="5">重新提交</option>
|
|
|
+ <option value="1">待审核</option>
|
|
|
+ <option value="2">审核驳回</option>
|
|
|
+ <option value="3">审核通过</option>
|
|
|
+ <option value="4">审核不通过</option>-->
|
|
|
+ <option value="1">保存未提交</option>
|
|
|
+ <option value="2">初审驳回</option>
|
|
|
+ <option value="3">待初审(首次提交)</option>
|
|
|
+ <option value="4">待初审(重新提交)</option>
|
|
|
+ {if condition="in_array($type,[1])"}
|
|
|
+ <option value="5">待初审(部门并审驳回)</option>
|
|
|
+ {/if}
|
|
|
+ <option value="6">待初审(复审驳回)</option>
|
|
|
+ {if condition="in_array($type,[1])"}
|
|
|
+ <option value="7">初审通过(待部门并审)</option>
|
|
|
+ {/if}
|
|
|
+ <option value="8">初审通过(待复审)</option>
|
|
|
+ <option value="9">初审不通过</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3" style="display: none">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <div class="input-group-btn">
|
|
|
+ <button data-toggle="dropdown" class="btn btn-white dropdown-toggle" type="button">状态
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <select class="form-control" id="isPublic">
|
|
|
+ <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>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <button type="button" style="cursor:pointer;" class="btn btn-sm btn-info glyphicon glyphicon-search" onclick="TalentTypeChange.search()">搜索</button>
|
|
|
+ <button type="button" style="cursor:pointer;" class="btn btn-sm btn-warning glyphicon glyphicon-repeat" onclick="TalentTypeChange.reset()">重置</button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div class="hidden-xs" id="TalentTypeChangeTableToolbar" role="group">
|
|
|
+ {if condition="chkCommission('/admin/talentTypeChange/firstCheck','/talentTypeChange/firstCheck')"}
|
|
|
+ <button type="button" class="btn btn-sm btn-primary " onclick="TalentTypeChange.openTalentTypeChangeCheck()" id="">
|
|
|
+ <i class="fa fa-check"></i> 审核
|
|
|
+ </button>
|
|
|
+ {/if}
|
|
|
+ {if condition="chkCommission('/admin/talentTypeChange/firstExport','/talentTypeChange/firstExport')"}
|
|
|
+ <button type="button" class="btn btn-sm btn-primary " onclick="TalentTypeChange.showExportModal(1)" id="">
|
|
|
+ <i class="fa fa-file-excel-o"></i> 导出
|
|
|
+ </button>
|
|
|
+ {/if}
|
|
|
+ {if condition="chkCommission('','/talentTypeChange/firstDownload')"}
|
|
|
+ <button type="button" class="btn btn-sm btn-primary " onclick="TalentTypeChange.download()" id="">
|
|
|
+ <i class="fa fa-download"></i> 下载
|
|
|
+ </button>
|
|
|
+ {/if}
|
|
|
+ {if condition="chkCommission('/admin/talentTypeChange/updateFieldsAndFiles','/talentTypeChange/updateFieldsAndFiles')"}
|
|
|
+ <button type="button" class="btn btn-sm btn-primary " onclick="TalentTypeChange.updateFieldsAndFiles()" id="">
|
|
|
+ <i class="fa fa-edit"></i> 修改驳回字段
|
|
|
+ </button>
|
|
|
+ {/if}
|
|
|
+ {if condition="chkCommission('/admin/talent/getPhones','')"}
|
|
|
+ <button type="button" class="btn btn-sm btn-primary " onclick="TalentTypeChange.getPhones()" id="">
|
|
|
+ <i class="fa fa-mobile"></i> 获取人才手机号
|
|
|
+ </button>
|
|
|
+ {/if}
|
|
|
+ {if condition="chkCommission('/admin/talent/getEnterprisePhones','')"}
|
|
|
+ <button type="button" class="btn btn-sm btn-primary " onclick="TalentTypeChange.getEnterprisePhones()" id="">
|
|
|
+ <i class="fa fa-phone"></i> 获取人才联络员手机号
|
|
|
+ </button>
|
|
|
+ {/if}
|
|
|
+ </div>
|
|
|
+ <table id="TalentTypeChangeTable" 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>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+<iframe id="hiddenIframe" name="hiddenIframe" style="display: none;"></iframe>
|
|
|
+<!--<script src="${ctxPath}/static/modular/talentLibrary/talentTypeChange/talentTypeChange_first.js"></script>-->
|
|
|
+<!--<script src="${ctxPath}/static/modular/talentLibrary/talentTypeChange/talentTypeChange_common.js"></script>-->
|
|
|
+<script type="text/javascript">
|
|
|
+ document.write('<script src="/static/modular/talentLibrary/talentTypeChange/talentTypeChange_first.js?v='+(new Date()).getTime()+'"><\/script>');
|
|
|
+ document.write('<script src="/static/modular/talentLibrary/talentTypeChange/talentTypeChange_common.js?v='+(new Date()).getTime()+'"><\/script>');
|
|
|
+</script>
|
|
|
+{/block}
|