This commit is contained in:
mkm 2023-09-25 22:00:21 +08:00
parent 285554a8ba
commit b358dfe299

View File

@ -39,8 +39,8 @@ class RechargeController extends BaseApiController
public function deposit_lists() public function deposit_lists()
{ {
$params=$this->request->param(); $params=$this->request->param();
$list=CompanyAccountLog::where('company_id',$this->userId)->page($params['page'],15)->select(); $list=CompanyAccountLog::where('company_id',$this->userId)->page($params['page_no'],15)->select();
return $this->success('ok',['count'=>0,'extend'=>[],'lists'=>$list,'page_no'=>$params['page'],'page_size'=>$params['page_size']]); return $this->success('ok',['count'=>0,'extend'=>[],'lists'=>$list,'page_no'=>$params['page_no'],'page_size'=>$params['page_size']]);
} }