|
@@ -2522,6 +2522,7 @@ class IndexController extends WebBaseController
|
|
|
|
|
|
public function comfirm_post(Request $request)
|
|
|
{
|
|
|
+ return ['status' => 0, 'msg' => "由于系统原因,请于2023年9月11日10点后再进行择岗!"];
|
|
|
$user = $this->getUser();
|
|
|
if (!empty($user)) {
|
|
|
$uid = $user->id;
|
|
@@ -2533,7 +2534,7 @@ class IndexController extends WebBaseController
|
|
|
$appoint_id = $request->input('appoint_id');
|
|
|
$time = time();
|
|
|
if($time > 1694491200 || $time < 1694394000){
|
|
|
- return $this->showMessage('抱歉,未到择岗时间!', route('recruit.show',array('id',$recruit_id)), true, '上一页', '2');
|
|
|
+ return ['status' => 0, 'msg' => "抱歉,未到择岗时间!"];
|
|
|
}
|
|
|
$info = RecruitAppointSelect::where('uid',$uid)->where('recruit_id',$recruit_id)->where('appoint_id',$appoint_id)->first();
|
|
|
if($info->result){
|