|
@@ -1975,14 +1975,14 @@ class IndexController extends WebBaseController
|
|
|
} else {
|
|
|
return redirect(route('login'));
|
|
|
}
|
|
|
- $limit_time = 1662543000;
|
|
|
+ $limit_time = 1694079000;
|
|
|
$time = time();
|
|
|
if( $time > $limit_time){
|
|
|
- return $this->showMessage('抱歉,考察审核端口已关闭!', route('recruit.show',array('id',18)), true, '上一页', '3');
|
|
|
+ return $this->showMessage('抱歉,考察审核端口已关闭!', route('recruit.show',array('id',38)), true, '上一页', '3');
|
|
|
}
|
|
|
|
|
|
$appoint_id = $request->input('appoint_id');
|
|
|
- $appoint_info = RecruitAppointInfo::where('uid',$uid)->where('recruit_id',18)->where('id',$appoint_id)->first();
|
|
|
+ $appoint_info = RecruitAppointInfo::where('uid',$uid)->where('recruit_id',38)->where('id',$appoint_id)->first();
|
|
|
if(!$appoint_info){
|
|
|
return ['status' => 0, 'msg' => '抱歉,找不到您要补登的报名记录!'];
|
|
|
}
|
|
@@ -2038,6 +2038,17 @@ class IndexController extends WebBaseController
|
|
|
// }
|
|
|
// }
|
|
|
// $info->family_planning = json_encode($family_planning);
|
|
|
+ //失信查询 情况
|
|
|
+ $chengxin = $request->input('chengxin');
|
|
|
+ if(is_array($chengxin)){
|
|
|
+ //删除掉没有成功返回路径的图片
|
|
|
+ foreach ($chengxin as $k => $v){
|
|
|
+ if(!array_key_exists('response',$v)){
|
|
|
+ unset($chengxin[$k]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ $info->chengxin = json_encode($chengxin);
|
|
|
//综治
|
|
|
$manage = $request->input('manage');
|
|
|
if(is_array($manage)){
|
|
@@ -2100,6 +2111,17 @@ class IndexController extends WebBaseController
|
|
|
// }
|
|
|
// }
|
|
|
// $data['family_planning'] = json_encode($family_planning);
|
|
|
+ //失信查询 情况
|
|
|
+ $chengxin = $request->input('chengxin');
|
|
|
+ if(is_array($chengxin)){
|
|
|
+ //删除掉没有成功返回路径的图片
|
|
|
+ foreach ($chengxin as $k => $v){
|
|
|
+ if(!array_key_exists('response',$v)){
|
|
|
+ unset($chengxin[$k]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ $data['chengxin'] = json_encode($chengxin);
|
|
|
//综治
|
|
|
$manage = $request->input('manage');
|
|
|
if(is_array($manage)){
|