1.提交缺失的东西

This commit is contained in:
2025-05-15 15:51:09 +08:00
parent 68e8a7cb16
commit 38b1e3aab1
2 changed files with 55 additions and 1 deletions

View File

@ -69,5 +69,16 @@ class RechargeController extends BaseApiController
return $this->data(RechargeLogic::config($this->userId));
}
/**
* 充值记录
*/
public function rechargeRecord()
{
$get = $this->request->get();
$get['page_no'] = $get['page_no'] ?? $this->page_no;
$get['page_size'] = $get['page_size'] ?? $this->page_size;
$get['user_id'] = $this->userId;
$result = RechargeLogic::rechargeRecord($get);
return $this->success('',$result);
}
}