Auth.php 885 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\weapp\api\controller;
  11. use addon\weapp\model\Weapp;
  12. use app\Controller;
  13. use think\facade\Log;
  14. class Auth extends Controller
  15. {
  16. public $wechat;
  17. public function __construct()
  18. {
  19. parent::__construct();
  20. $site_id = request()->siteid();
  21. $this->wechat = new Weapp($site_id);
  22. }
  23. /**
  24. * 小程序消息推送
  25. */
  26. public function relateWeixin()
  27. {
  28. Log::write('微信小程序消息');
  29. $this->wechat->relateWeixin();
  30. }
  31. }