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

求职招聘时间

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