作者 何书鹏
1 个管道 的构建 通过 耗费 1 秒

求职招聘时间

@@ -247,7 +247,7 @@ class CompanyJob extends Api @@ -247,7 +247,7 @@ class CompanyJob extends Api
247 $post = $this->request->param(); 247 $post = $this->request->param();
248 empty($post['name']) && $this->error('请输入岗位名称'); 248 empty($post['name']) && $this->error('请输入岗位名称');
249 empty($post['type']) && $this->error('请选择岗位类型'); 249 empty($post['type']) && $this->error('请选择岗位类型');
250 - if($post['type'] == '2'){ 250 + if($post['type'] != '1'){
251 empty($post['start_time']) && $this->error('请选择开始工作日期'); 251 empty($post['start_time']) && $this->error('请选择开始工作日期');
252 empty($post['end_time']) && $this->error('请选择结束工作日期'); 252 empty($post['end_time']) && $this->error('请选择结束工作日期');
253 } 253 }
@@ -228,7 +228,7 @@ class UserJob extends Api @@ -228,7 +228,7 @@ class UserJob extends Api
228 empty($post['name']) && $this->error('请输入岗位名称'); 228 empty($post['name']) && $this->error('请输入岗位名称');
229 empty($post['type']) && $this->error('请选择岗位类型'); 229 empty($post['type']) && $this->error('请选择岗位类型');
230 empty($post['mobile']) && $this->error('请输入手机号'); 230 empty($post['mobile']) && $this->error('请输入手机号');
231 - if($post['type'] == '2'){ 231 + if($post['type'] != '1'){
232 empty($post['start_time']) && $this->error('请选择开始工作日期'); 232 empty($post['start_time']) && $this->error('请选择开始工作日期');
233 empty($post['end_time']) && $this->error('请选择结束工作日期'); 233 empty($post['end_time']) && $this->error('请选择结束工作日期');
234 } 234 }