|
@@ -1367,6 +1367,7 @@ class RecruitController extends Controller
|
|
|
$info->save();
|
|
|
$appointinfo->health_audit = 0;
|
|
|
$appointinfo->save();
|
|
|
+ $this->smsService->sendSms($appointinfo->mobile,'sms_recruit_register_error',array('reason'=>$reason));
|
|
|
}
|
|
|
if($status == 1){
|
|
|
$reason = $reason ?? '符合报考条件';
|
|
@@ -1386,8 +1387,10 @@ class RecruitController extends Controller
|
|
|
$info->save();
|
|
|
$appointinfo->health_audit = 1;
|
|
|
$appointinfo->save();
|
|
|
+ $this->smsService->sendSms($appointinfo->mobile,'sms_recruit_register_success',array('reason'=>$reason));
|
|
|
}
|
|
|
|
|
|
+
|
|
|
return response()->json(['status' => 1, 'msg' => '操作成功!', 'data' => 'ok']);
|
|
|
}
|
|
|
|