wupengfei 2 years ago
parent
commit
1649d96bf4
1 changed files with 3 additions and 3 deletions
  1. 3 3
      application/api/controller/Base.php

+ 3 - 3
application/api/controller/Base.php

@@ -65,16 +65,16 @@ class Base extends Controller
             $authInfo = json_decode(json_encode($check_authorization['data']), true);
             if (!empty($authInfo['uid'])) {
                 $member = Db::name('store_member')->where('id',$authInfo['uid'])->find();
-                if(empty($member) || $member['is_deleted'])  $this->error('会员不存在','',0);
+                if(empty($member) || $member['is_deleted'])  $this->exception('会员不存在');
                 //if(!empty($authInfo['facility_code']) && !in_array($authInfo['facility_code'],[$member['facility_1'],$member['facility_2'],$member['facility_3'],$member['facility_4'],$member['facility_5']]))    $this->error('该设备已被禁用','',0,-1);
                 if($member['status']){
                     $this->user_id = $authInfo['uid'];
                     return $this->user_id;
                 }else{
-                    $this->error('该会员已被禁用','',0,-1);
+                    $this->exception('该会员已被禁用');
                 }
             } else {
-                $this->error('Token验证不通过,用户不存在','',0,-1);
+                $this->exception('Token验证不通过,用户不存在');
             }
         } catch (\Exception $e) {
             $this->error($e->getMessage(),'',0,-1);