|
@@ -720,7 +720,7 @@ class IndexController extends WebBaseController
|
|
|
if(!$appoint_info){
|
|
|
return response()->json(['status' => 0,'msg' => '抱歉,该项目已过报名时间!']);
|
|
|
}
|
|
|
- if(($time < strtotime($recruit['audit_start']) || strtotime($recruit['audit_start']) < $time)){
|
|
|
+ if(($time < strtotime($recruit['audit_start']) || strtotime($recruit['audit_end']) < $time)){
|
|
|
return response()->json(['status' => 0,'msg' => '抱歉,该项目已过审核时间,无法继续报名!']);
|
|
|
}
|
|
|
|