Wx.php 358 B

12345678910111213141516171819
  1. <?php
  2. namespace app\index\controller;
  3. use app\common\controller\Frontend;
  4. use app\common\service\WxOpenService;
  5. /**
  6. * 会员中心
  7. */
  8. class Wx extends Frontend
  9. {
  10. protected $noNeedLogin='*';
  11. public function callback($key,$e){
  12. $bind=WxOpenService::bind($key,$e);
  13. $this->assign('bind',$bind);
  14. return $this->fetch();
  15. }
  16. }