CsController.php 608 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace pt\controllers;
  3. use bizHd\auth\services\AuthService;
  4. use biz\sj\services\MerchantService;
  5. use common\components\util;
  6. use common\components\wxUtil;
  7. use Yii;
  8. class CsController extends BaseController
  9. {
  10. public $guestAccessAction = ['index'];
  11. public function actionIndex()
  12. {
  13. $content = '<a data-miniprogram-appid="wxe4675bab299a52f7" data-miniprogram-path="pages/case/get-list" href="">小程序</a>';
  14. $merchant = MerchantService::getMerchantById(12362);
  15. $openId = 'oTFbYvsjwgVwXggwtlM2ESAKwuN8';
  16. $return = wxUtil::sendMsg($content, $merchant, $openId);
  17. print_r($return);
  18. }
  19. }