|
@@ -1398,7 +1398,7 @@ class RecruitController extends Controller
|
|
|
$this->smsService->sendSms($appointinfo->mobile,'sms_recruit_register_error',array('reason'=>$reason));
|
|
|
}
|
|
|
if($status == 1){
|
|
|
- $reason = $reason ?? '符合报考条件';
|
|
|
+ $reason = $reason ?? '健康信息审核通过,请及时打印准考证';
|
|
|
$info = RecruitSupplement::where('appoint_id', $ids)->where('type',$type)->first();
|
|
|
$appointinfo = RecruitAppointInfo::where('id', $ids)->first();
|
|
|
//写日志
|
|
@@ -1415,7 +1415,7 @@ class RecruitController extends Controller
|
|
|
$info->save();
|
|
|
$appointinfo->health_audit = 1;
|
|
|
$appointinfo->save();
|
|
|
- $this->smsService->sendSms($appointinfo->mobile,'sms_recruit_register_success',array('reason'=>"健康信息审核通过,请及时打印准考证"));
|
|
|
+ $this->smsService->sendSms($appointinfo->mobile,'sms_recruit_register_success',array('reason'=>$reason));
|
|
|
}
|
|
|
|
|
|
|