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

求职招聘时间

... ... @@ -247,8 +247,16 @@ class CompanyJob extends Api
$post = $this->request->param();
empty($post['name']) && $this->error('请输入岗位名称');
empty($post['type']) && $this->error('请选择岗位类型');
empty($post['start_time']) && $this->error('请选择开始工作日期');
empty($post['end_time']) && $this->error('请选择结束工作日期');
if($post['type'] == '2'){
empty($post['start_time']) && $this->error('请选择开始工作日期');
empty($post['end_time']) && $this->error('请选择结束工作日期');
}
if(!empty($post['start_time'])){
$post['start_time'] = strtotime($post['start_time']);
}
if(!empty($post['end_time'])){
$post['end_time'] = strtotime($post['end_time']);
}
empty($post['salary']) && $this->error('请输入薪资待遇');
empty($post['address']) && $this->error('请输入工作地点');
empty($post['lng']) && $this->error('请输入工作地点经度');
... ...
... ... @@ -228,8 +228,16 @@ class UserJob extends Api
empty($post['name']) && $this->error('请输入岗位名称');
empty($post['type']) && $this->error('请选择岗位类型');
empty($post['mobile']) && $this->error('请输入手机号');
empty($post['start_time']) && $this->error('请选择开始工作日期');
empty($post['end_time']) && $this->error('请选择结束工作日期');
if($post['type'] == '2'){
empty($post['start_time']) && $this->error('请选择开始工作日期');
empty($post['end_time']) && $this->error('请选择结束工作日期');
}
if(!empty($post['start_time'])){
$post['start_time'] = strtotime($post['start_time']);
}
if(!empty($post['end_time'])){
$post['end_time'] = strtotime($post['end_time']);
}
empty($post['salary']) && $this->error('请输入薪资待遇');
empty($post['address']) && $this->error('请输入期望工作地点');
empty($post['user_job_ability_ids']) && $this->error('请选择资质能力');
... ...