TestController.php 402 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace saas\controllers;
  3. use biz\wx\services\WxOpenService;
  4. use Yii;
  5. use common\components\wxUtil;
  6. use common\components\miniUtil;
  7. class TestController extends PublicController
  8. {
  9. public $withoutLogin = ['open-local-express'];
  10. //开通即时配送
  11. public function actionOpenLocalExpress()
  12. {
  13. $merchant = WxOpenService::getWxInfo();
  14. miniUtil::openLocalExpress($merchant, 1);
  15. }
  16. }