| 1234567891011121314151617181920212223 |
- <?php
- namespace saas\controllers;
- use biz\wx\services\WxOpenService;
- use Yii;
- use common\components\wxUtil;
- use common\components\miniUtil;
- class TestController extends PublicController
- {
- public $withoutLogin = ['open-local-express'];
-
- //开通即时配送
- public function actionOpenLocalExpress()
- {
- $merchant = WxOpenService::getWxInfo();
- miniUtil::openLocalExpress($merchant, 1);
- }
-
- }
|