wupengfei 1 年之前
父节点
当前提交
a0d57afba2
共有 2 个文件被更改,包括 4 次插入6 次删除
  1. 1 1
      .idea/workspace.xml
  2. 3 5
      application/api/controller/Login.php

+ 1 - 1
.idea/workspace.xml

@@ -365,7 +365,7 @@
       <workItem from="1688455154865" duration="9184000" />
       <workItem from="1688518183305" duration="6273000" />
       <workItem from="1688604602203" duration="6094000" />
-      <workItem from="1688693622642" duration="3059000" />
+      <workItem from="1688693622642" duration="3317000" />
     </task>
     <servers />
   </component>

+ 3 - 5
application/api/controller/Login.php

@@ -51,8 +51,8 @@ class Login extends Base
         try {
             $check_code = $this->checkPhoneCode($account,$code,$phone_pre);
             if(!in_array($account,config('power.phone'))) {
-                //if(!$check_code) $this->exception('验证码错误');
-                //$this->updatePhoneCode($check_code);
+               // if(!$check_code) $this->exception('验证码错误');
+               // $this->updatePhoneCode($check_code);
             }
             $where = [];
             $where[] = $account_type == 1 ? ['email','=',$account] : ['phone','=',$account];
@@ -104,11 +104,9 @@ class Login extends Base
                 $user_info = $user_info->toArray();
                 // 已设置登录设备号
                 if($user_info['status'] != 1) $this->exception('用户被禁用');
-               //if($user_info['facility_'.$facility_type] != '' && $facility_code != $user_info['facility_'.$facility_type]) $this->exception('设备号错误');
-                //if(!$user_info['facility_'.$facility_type]) User::where('id',$user_info['id'])->update(['facility_'.$facility_type=>$facility_code] );
             }
             // 设备号验证
-            //if(!UserFacility::checkFacility($user_info['id'],$facility_type,$facility_code,$account)) $this->exception('设备号错误');
+            if(!UserFacility::checkFacility($user_info['id'],$facility_type,$facility_code,$account)) $this->exception('设备号错误');
             if(empty($user_info['hx_username']) || !$user_info['hx_username']) hx_register($user_info['id']);
             $ret_data['token'] =  $this->createJwt($user_info['id'],$facility_code,$facility_type);
             if($user_info['account_type'] == 1) {