| 123456789101112131415161718192021222324 |
- <?php
- namespace pt\controllers;
- use bizHd\auth\services\AuthService;
- use biz\sj\services\MerchantService;
- use common\components\util;
- use common\components\wxUtil;
- use Yii;
- class CsController extends BaseController
- {
- public $guestAccess = ['index'];
-
- public function actionIndex()
- {
- $content = '<a data-miniprogram-appid="wxe4675bab299a52f7" data-miniprogram-path="pages/case/get-list" href="">小程序</a>';
- $merchant = MerchantService::getMerchantById(12362);
- $openId = 'oTFbYvsjwgVwXggwtlM2ESAKwuN8';
- $return = wxUtil::sendMsg($content, $merchant, $openId);
- print_r($return);
- }
- }
|