| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\common\controllers;
- use app\models\Option;
- use app\models\Store;
- use yii\web\Controller;
- use app\modules\admin\models\maiyatian\MaiyatianForm;
- class MaiyatianController extends Controller
- {
- public function actionIndex()
- {
- $command = get_params('command');
- if($command){
- $data = all_params();
- return $this->asJson(MaiyatianForm::callbackCommand($command, $data));
- }
- }
- public function actionTest()
- {
- $command = get_params('command');
- if($command){
- $data = all_params();
- return $this->asJson(MaiyatianForm::callbackCommandTest($command, $data));
- }
- }
- }
|