uid = $jwtAuth->getUid(); } public function deleteUnderTaker($del_arr) { $result=(new Undertake())->deleteInfoByID($del_arr); if ($result == 0) { throw new ApiException(config('status.none_data')); } return $result; } public function createUnderTakerInfo($data) { $uid = $this->uid; $bear_name = (new Jcdw())->getInfoById($data['bear_id'])['name']; $check_name = (new Jcdw())->getInfoById($data['check_id'])['name']; $report_name = (new Jcdw())->getInfoById($data['report_id'])['name']; $save_data=[ 'task_id' => $data['task_id'], 'unit_id' => $uid, 'bear_id' => $data['bear_id'], 'check_id' => $data['check_id'], 'report_id' => $data['report_id'], 'bear_name' => $bear_name, 'check_name' => $check_name, 'report_name' => $report_name, 'sample_number' => $data['sample_number'], 'address' => $data['address'], 'uploadtime' => $data['upload_time'], ]; $result = (new Undertake())->insert($save_data,true); if ($result == null) { throw new ApiException(config('status.err_data_upload')); } return true; } //查询任务列表数据 public function selectUndertakerTaskList($task_class,$pageNum,$pageSize,$data) { //$where=[['bear_id','=',$this->uid],['task_class','=',$task_class]]; $where=[['bear_id','=',$this->uid]]; if ($data['year']!='') array_push($where, ['year', '=', $data['year']]); //任务状态:0:未发布,1:执行中,2:已结束未完成,3:已结束已完成 if ($data['ispublic'] != '') array_push($where, ['ispublic', '=', $data['ispublic']]); //任务开始时间 if ($data['starttime'] != '') array_push($where, ['starttime', '>=', $data['starttime']]); //任务结束时间 if ($data['endtime'] != '') array_push($where, ['endtime', '<=', $data['endtime']]); //任务名称:模糊查询 if ($data['task_name'] != '' ) array_push($where, ['task_name', 'LIKE', '%'.$data['task_name'].'%']); //$data = (new Undertake())->selectCcjcData($where,$pageNum,$pageSize); $data = (new Ccjc())->selectUndertakeData($task_class,$where,$pageNum,$pageSize); $count = (new Ccjc())->countUndertakeData($task_class,$where); // $count =(new Undertake())->countCcjcData($where); return ['rows'=>$data,'total'=>$count]; } }