Compare commits
No commits in common. "a768dc5887c4179410ea7e752b59066aaddfe667" and "8a661673109dac8481335f9565e145390c43f8aa" have entirely different histories.
a768dc5887
...
8a66167310
|
@ -18,17 +18,6 @@
|
||||||
return json($result);
|
return json($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
//押金凭证列表
|
|
||||||
public function getDepositRechargeTransferVoucherList(): Json
|
|
||||||
{
|
|
||||||
$params=$this->request->get(['page_no','page_size','company_id']);
|
|
||||||
$result = curl_post(env('project.worker_domain').'/middleapi/company/getDepositRechargeTransferVoucherList',$params,$this->reqHeader);
|
|
||||||
if($result['code'] == 0){
|
|
||||||
return $this->fail($result['msg']);
|
|
||||||
}
|
|
||||||
return json($result);
|
|
||||||
}
|
|
||||||
|
|
||||||
//公司详情
|
//公司详情
|
||||||
public function detail(): Json
|
public function detail(): Json
|
||||||
{
|
{
|
||||||
|
@ -150,17 +139,4 @@
|
||||||
}
|
}
|
||||||
return json($result);
|
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);
|
|
||||||
}
|
|
||||||
}
|
}
|
|
@ -19,16 +19,6 @@ class UserController extends BaseAdminController
|
||||||
return $this->dataLists(new UserLists());
|
return $this->dataLists(new UserLists());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function taskLists(): Json
|
|
||||||
{
|
|
||||||
$params=$this->request->get(['page_no','page_size','company_id', 'account', 'mobile']);
|
|
||||||
$result = curl_post(env('project.worker_domain').'/middleapi/user/lists',$params,$this->reqHeader);
|
|
||||||
if($result['code'] == 0){
|
|
||||||
return $this->fail($result['msg']);
|
|
||||||
}
|
|
||||||
return json($result);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获取用户详情
|
// 获取用户详情
|
||||||
public function detail(): Json
|
public function detail(): Json
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue