qifengquan 1 年間 前
コミット
3259ca647d

+ 15 - 31
application/api/controller/Common.php

@@ -173,38 +173,22 @@ class Common extends Api
     }
 
     /**
-     * code
+     * 获取openid
      */
-    public function getOpenid($code = ''){
+    function getOpenid($code_ = ''){
+        $code = $code_;
         $appid = 'wx5e111b790c719cae';
-        $secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx';
-        $url = "https://api.weixin.qq.com/sns/jscode2session?appid="
-            . $appid . "&secret="
-            . $secret . "&js_code="
-            . $code . "&grant_type=authorization_code";
-        $wxuserinfo = file_get_contents($url, true);
-        $openid = json_decode($wxuserinfo, true)['openid'];
-        echo $openid;
-    }
-    /**
-     * @Title ("小程序根据code获取openid")
-     * @Method ("post")
-     * @Param("code",desc="code")
-     */
-    public function getOpenid2(){
-        $data=$this->_vali([
-            'code.require'=>'code必须',
-        ],'post');
-        $code = $data['code'];
-        $appid = 'wxa5033cf91977e574';
-        $secret = '2a36bfbced93a2c4256e7b6b15922990';
-        $url = "https://api.weixin.qq.com/sns/jscode2session?appid=" . $appid . "&secret=" . $secret . "&js_code=" . $code . "&grant_type=authorization_code";
-        $session_key = curlRequest($url);
-        if (!empty($session_key['session_key'])) {
-            $re['openid'] = $session_key['openid'];
-            $this->success('成功',$re);
-        }else{
-            $this->error('获取session_key失败!');
-        }
+        $secret = 'a4e2a6d2a4fd06bd9e4ba279fd95e2d8';
+        $get_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$secret.'&code='.$code.'&grant_type=authorization_code';
+        $ch = curl_init();
+        curl_setopt($ch,CURLOPT_URL,$get_token_url);
+        curl_setopt($ch,CURLOPT_HEADER,0);
+        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
+        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
+        $res = curl_exec($ch);
+        curl_close($ch);
+        $json_obj = json_decode($res,true);
+        if($json_obj['openid'])return $json_obj['openid'];
+        $this->error('0',$json_obj);
     }
 }

+ 5 - 4
application/api/controller/User.php

@@ -22,6 +22,7 @@ use think\Request;
 use think\Validate;
 use app\common\model\User as UserModel;
 use addons\epay\controller\Api as payApi;
+use app\api\controller\Common;
 
 /**
  * 会员接口
@@ -175,9 +176,9 @@ class User extends Api
         $mobile = $this->request->post('mobile');
         $captcha = $this->request->post('captcha');
         $code = $this->request->post('code');
-        if (!$mobile || !$captcha) {
-            $this->error(__('Invalid parameters'));
-        }
+//        if (!$mobile || !$captcha || $code) {
+//            $this->error(__('Invalid parameters'));
+//        }
 
         if (!Validate::regex($mobile, "^1\d{10}$")) {
             $this->error(__('Mobile is incorrect'));
@@ -201,7 +202,7 @@ class User extends Api
         if ($ret) {
             Sms::flush($mobile, 'mobilelogin');
             $data = ['userinfo' => $this->auth->getUserinfo()];
-            $data['openid'] = getOpenid($code);
+            $data['openid'] = (new \app\api\controller\Common())->getOpenid($code);
             $this->success(__('Logged in successful'), $data);
         } else {
             $this->error($this->auth->getError());

+ 0 - 20
application/common.php

@@ -529,23 +529,3 @@ EOT;
         return $age;
     }
 
-    /**
-     * 获取openid
-     */
-    function getOpenid($code_ = ''){
-        $code = $code_;
-
-        $appid = 'wx5e111b790c719cae';
-
-        $secret = 'a4e2a6d2a4fd06bd9e4ba279fd95e2d8';
-
-        $get_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$secret.'&code='.$code.'&grant_type=authorization_code';
-        $ch = curl_init();curl_setopt($ch,CURLOPT_URL,$get_token_url);curl_setopt($ch,CURLOPT_HEADER,0);curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
-        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
-        $res = curl_exec($ch);
-        curl_close($ch);
-        $json_obj = json_decode($res,true);
-        $openId = $json_obj['openid'];
-        return $openId;
-    }
-

+ 1 - 0
public/MP_verify_ns8G9nKP7jk6hBA0.txt

@@ -0,0 +1 @@
+ns8G9nKP7jk6hBA0

+ 5 - 6
public/assets/js/backend/report.js

@@ -26,13 +26,12 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                     [
                         {checkbox: true},
                         {field: 'id', title: __('Id')},
-                        {field: 'uid', title: __('Uid')},
-                        {field: 'user.id', title: __('User.id')},
-                        {field: 'user.username', title: __('User.username'), operate: 'LIKE'},
-                        {field: 'user.mobile', title: __('User.mobile'), operate: 'LIKE'},
-                        {field: 'nid', title: __('Nid')},
+                        {field: 'user.id', title: __('举报人id')},
+                        {field: 'user.username', title: __('举报人姓名'), operate: 'LIKE'},
+                        {field: 'user.mobile', title: __('举报人手机号'), operate: 'LIKE'},
+                        {field: 'createtime', title: __('举报时间'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
+                        {field: 'nid', title: __('被举报人id')},
                         {field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
-                        {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
                         // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
                     ]
                 ]