|
|
@@ -7,6 +7,14 @@
|
|
|
<meta name="decorator" content="ani"/>
|
|
|
<%@ include file="/webpage/include/bootstraptable.jsp"%>
|
|
|
<%@include file="/webpage/include/treeview.jsp" %>
|
|
|
+ <style>
|
|
|
+ .btn-new{
|
|
|
+ background: #fff;
|
|
|
+ font-size: 12px;
|
|
|
+ padding: 0 1px;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
<script>
|
|
|
$(document).ready(function() {
|
|
|
$('#omOwnCandidateTable').bootstrapTable({
|
|
|
@@ -135,15 +143,15 @@ $(document).ready(function() {
|
|
|
if(row.status == 0){//候选中
|
|
|
|
|
|
}else if(row.status == 2){//面试未通过
|
|
|
- info = '<button disabled="disabled" class="btn btn-xs" style="color:#000;border:2px solid #333;background:#fff;font-size:12px;font-weight:bold">最近</button> '+"待面试(未通过)";
|
|
|
+ info = '<button disabled="disabled" class="btn btn-xs btn-new" style="color:#000;border:1px solid #333">最近</button> '+"待面试(未通过)";
|
|
|
}else if(row.status == 4){//未录用
|
|
|
- info = '<button disabled="disabled" class="btn btn-xs" style="color:#000;border:2px solid #333;background:#fff;font-size:12px;font-weight:bold">最近</button> '+"待录用(未录用)";
|
|
|
+ info = '<button disabled="disabled" class="btn btn-xs btn-new" style="color:#000;border:1px solid #333">最近</button> '+"待录用(未录用)";
|
|
|
}else if(row.status == 6){//未入职
|
|
|
- info = '<button disabled="disabled" class="btn btn-xs" style="color:#000;border:2px solid #333;background:#fff;font-size:12px;font-weight:bold">最近</button> '+"待入职(未入职)";
|
|
|
+ info = '<button disabled="disabled" class="btn btn-xs btn-new" style="color:#000;border:1px solid #333">最近</button> '+"待入职(未入职)";
|
|
|
}else if(row.status == 8){//已离职
|
|
|
- info = '<button disabled="disabled" class="btn btn-xs" style="color:#000;border:2px solid #333;background:#fff;font-size:12px;font-weight:bold">最近</button> '+"在职(办理离职)";
|
|
|
+ info = '<button disabled="disabled" class="btn btn-xs btn-new" style="color:#000;border:1px solid #333">最近</button> '+"在职(办理离职)";
|
|
|
}else if(row.status == 1){//待面试
|
|
|
- info = '<button onclick="interviewTime('+row.omCandidateTrack.id+')" class="btn btn-xs" style="color:#0F70E1;border:2px solid #0F70E1;background:#fff;font-size:12px;font-weight:bold">面试</button> '+
|
|
|
+ info = '<button onclick="interviewTime('+row.omCandidateTrack.id+')" class="btn btn-xs btn-new" style="color:#0F70E1;border:1px solid #0F70E1">面试</button> '+
|
|
|
'<a onclick="interviewTime('+row.omCandidateTrack.id+')" style="color:#0F70E1">'+timeFormat(row.omCandidateTrack.interviewTime)+'</a>';
|
|
|
}else if(row.status == 3){//待录用
|
|
|
//info = '--';
|
|
|
@@ -151,7 +159,7 @@ $(document).ready(function() {
|
|
|
//info = '--';
|
|
|
}else if(row.status == 7){//已入职(在职)
|
|
|
if(row.omCandidateTrack.cashbackDate){
|
|
|
- info = '<button disabled="disabled" class="btn btn-xs" style="color:#D40000;border:2px solid #D40000;background:#fff;font-size:12px;font-weight:bold">返费</button> '+
|
|
|
+ info = '<button disabled="disabled" class="btn btn-xs btn-new" style="color:#D40000;border:1px solid #D40000">返费</button> '+
|
|
|
'<span style="color:#D40000">'+dateFormat(row.omCandidateTrack.cashbackDate)+'</span>';
|
|
|
}
|
|
|
}
|