RechargeController.php 602 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. namespace app\modules\alliance\controllers;
  8. use app\modules\alliance\models\RecordForm;
  9. class RechargeController extends BaseController
  10. {
  11. public function behaviors()
  12. {
  13. return parent::behaviors();
  14. }
  15. public function actionLeagueRecord()
  16. {
  17. $form = new RecordForm();
  18. $form->attributes = get_params();
  19. $res = $form->league_search();
  20. return $this->asJson($res);
  21. }
  22. }