feat: 增加对用户充值列表的查询功能

This commit is contained in:
mkm 2024-06-22 16:36:02 +08:00
parent 1feb8d5a01
commit cc537b8345

View File

@ -43,6 +43,7 @@ use app\common\model\user_recharge\UserRecharge;
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($data){
$data['label_name']='';
if($data['recharge_type']=='INDUSTRYMEMBERS'){
$find =User::where('id',$data['uid'])->find();
$data['real_name']=$find['real_name'];