Compare commits

..

No commits in common. "8c29ff55a2dd934e856d44637606daa3dadaa9cc" and "8ba51174f5dca8f60ccbfb908a003dd1ce8cadc1" have entirely different histories.

1 changed files with 0 additions and 13 deletions

View File

@ -139,17 +139,4 @@
}
return json($result);
}
public function responsibleArea(): Json
{
$params = $this->request->get(['key','value','company_type']);
if(empty($params['key']) || empty($params['value']) || empty($params['company_type'])){
return $this->fail('缺少必要参数');
}
$result = curl_post(env('project.worker_domain').'/middleapi/company/responsibleArea',$params,$this->reqHeader);
if($result['code'] == 0){
return $this->fail($result['msg']);
}
return json($result);
}
}