|
|
|
@ -28,6 +28,17 @@
|
|
|
|
|
}
|
|
|
|
|
return json($result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//上传押金凭证
|
|
|
|
|
public function depositRechargeTransferVoucher(): Json
|
|
|
|
|
{
|
|
|
|
|
$params=$this->request->post(['company_id','deposit','voucher']);
|
|
|
|
|
$result = curl_post(env('project.worker_domain').'/middleapi/company/depositRechargeTransferVoucher',$params,$this->reqHeader);
|
|
|
|
|
if($result['code'] == 0){
|
|
|
|
|
return $this->fail($result['msg']);
|
|
|
|
|
}
|
|
|
|
|
return json($result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//公司详情
|
|
|
|
|
public function detail(): Json
|
|
|
|
@ -68,7 +79,8 @@
|
|
|
|
|
if(empty($params['company_name']) || empty($params['organization_code']) || empty($params['company_type']) || empty($params['master_name']) || empty($params['master_phone'])){
|
|
|
|
|
return $this->fail('缺少必要参数');
|
|
|
|
|
}
|
|
|
|
|
$result = curl_post(env('project.worker_domain').'/middleapi/company/create',http_build_query($params),$this->reqHeader);
|
|
|
|
|
$this->reqHeader[] = 'Content-Type: application/json; charset=utf-8';
|
|
|
|
|
$result = curl_post(env('project.worker_domain').'/middleapi/company/create',json_encode($params,true),$this->reqHeader);
|
|
|
|
|
if($result['code'] == 0){
|
|
|
|
|
return $this->fail($result['msg']);
|
|
|
|
|
}
|
|
|
|
@ -82,7 +94,8 @@
|
|
|
|
|
if(empty($params['id']) || empty($params['company_name']) || empty($params['organization_code']) || empty($params['company_type']) || empty($params['master_name']) || empty($params['master_phone'])){
|
|
|
|
|
return $this->fail('缺少必要参数');
|
|
|
|
|
}
|
|
|
|
|
$result = curl_post(env('project.worker_domain').'/middleapi/company/edit',http_build_query($params),$this->reqHeader);
|
|
|
|
|
$this->reqHeader[] = 'Content-Type: application/json; charset=utf-8';
|
|
|
|
|
$result = curl_post(env('project.worker_domain').'/middleapi/company/edit',json_encode($params,true),$this->reqHeader);
|
|
|
|
|
if($result['code'] == 0){
|
|
|
|
|
return $this->fail($result['msg']);
|
|
|
|
|
}
|
|
|
|
|