| 1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\alliance\controllers;
- use app\modules\alliance\models\RecordForm;
- class RechargeController extends BaseController
- {
- public function behaviors()
- {
- return parent::behaviors();
- }
- public function actionLeagueRecord()
- {
- $form = new RecordForm();
- $form->attributes = get_params();
- $res = $form->league_search();
- return $this->asJson($res);
- }
- }
|