| 12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\client\controllers\v1\wechat_mp;
- use app\modules\admin\models\wechat_mp\CardForm;
- use app\models\Store;
- use app\models\Option;
- use app\constants\OptionSetting;
- use EasyWeChat\Factory;
- /**
- * Class GoodsController
- * @package app\modules\admin\controllers
- */
- class CardController extends BaseController
- {
- //获取开卡插件参数
- public function actionUrl(){
- $params = post_params();
- $form = new CardForm();
- $res = $form->getUrlByStoreId($params['store_id']);
- return $this->asJson($res);
- }
- }
|