正在显示
2 个修改的文件
包含
2 行增加
和
2 行删除
@@ -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 | } |
-
请 注册 或 登录 后发表评论