Browse Source

增加是否会员

ZxcZxc123 1 year ago
parent
commit
70e47f6d79
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/api/controller/wechat/WechatController.php

+ 1 - 0
app/api/controller/wechat/WechatController.php

@@ -80,6 +80,7 @@ class WechatController
         $openid = $wechatInfo['openid'];
         event('WechatOauthAfter', [$openid, $wechatInfo, $spreadId, $login_type]);
         $user = User::where('uid', WechatUser::openidToUid($openid, 'openid'))->find();
+        var_dump($user);
         if (!$user)
             return app('json')->fail('获取用户信息失败');
         if ($user->login_type == 'h5' && ($h5UserInfo = User::where(['account' => $user->phone, 'phone' => $user->phone, 'user_type' => 'h5'])->find()))