新增档案列表接口和档案详情接口
This commit is contained in:
parent
3fac24b5e7
commit
af78fdd2b1
|
@ -3,6 +3,7 @@
|
|||
namespace app\adminapi\controller\archives;
|
||||
|
||||
use app\adminapi\controller\BaseAdminController;
|
||||
use think\response\Json;
|
||||
|
||||
class ArchivesController extends BaseAdminController
|
||||
{
|
||||
|
@ -17,5 +18,27 @@
|
|||
];
|
||||
}
|
||||
|
||||
|
||||
//档案列表
|
||||
public function lists(): Json
|
||||
{
|
||||
$params = $this->request->get(['page_no','page_size','name']);
|
||||
$result = curl_post(env('project.worker_domain').'/middleapi/archives/lists',$params,$this->reqHeader);
|
||||
if($result['code'] == 0){
|
||||
return $this->fail($result['msg']);
|
||||
}
|
||||
return json($result);
|
||||
}
|
||||
|
||||
public function detail(): Json
|
||||
{
|
||||
$params = $this->request->get(['id']);
|
||||
if(empty($params['id'])){
|
||||
return $this->fail('参数错误');
|
||||
}
|
||||
$result = curl_post(env('project.worker_domain').'/middleapi/archives/detail',$params,$this->reqHeader);
|
||||
if($result['code'] == 0){
|
||||
return $this->fail($result['msg']);
|
||||
}
|
||||
return json($result);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue