1.提交缺失的东西
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user