更新
This commit is contained in:
parent
f0d4d0589e
commit
285554a8ba
@ -16,7 +16,7 @@ namespace app\api\controller;
|
|||||||
use app\api\lists\recharge\RechargeLists;
|
use app\api\lists\recharge\RechargeLists;
|
||||||
use app\api\logic\RechargeLogic;
|
use app\api\logic\RechargeLogic;
|
||||||
use app\api\validate\RechargeValidate;
|
use app\api\validate\RechargeValidate;
|
||||||
|
use app\common\model\company\CompanyAccountLog;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 充值控制器
|
* 充值控制器
|
||||||
@ -36,6 +36,12 @@ class RechargeController extends BaseApiController
|
|||||||
{
|
{
|
||||||
return $this->dataLists(new RechargeLists());
|
return $this->dataLists(new RechargeLists());
|
||||||
}
|
}
|
||||||
|
public function deposit_lists()
|
||||||
|
{
|
||||||
|
$params=$this->request->param();
|
||||||
|
$list=CompanyAccountLog::where('company_id',$this->userId)->page($params['page'],15)->select();
|
||||||
|
return $this->success('ok',['count'=>0,'extend'=>[],'lists'=>$list,'page_no'=>$params['page'],'page_size'=>$params['page_size']]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user