songxingwei il y a 2 ans
Parent
commit
725e400316
1 fichiers modifiés avec 6 ajouts et 2 suppressions
  1. 6 2
      app/data/controller/api/business/Login.php

+ 6 - 2
app/data/controller/api/business/Login.php

@@ -2,6 +2,7 @@
 
 namespace app\data\controller\api\business;
 
+use app\data\service\MessageService;
 use think\admin\Controller;
 use app\data\model\SystemUser;
 use hg\apidoc\annotation\Title;
@@ -66,6 +67,9 @@ class Login extends Controller
                 if ($code != 8888) {
                     $this->error('验证码错误!',null);
                 }
+                elseif (!MessageService::instance()->checkCode($code, $data['mobile'],5)) {
+                    $this->error('验证码错误!',null);
+                }
                 else{
                     if(empty($user)){
                         $this->error('商家不存在',null);
@@ -106,8 +110,8 @@ class Login extends Controller
         if(!$user->merchant){
             $this->error('您不是商家',null);
         }
-        if ($data['code'] != 8888) {
-            $this->error('验证码错误!',null);
+        if (!MessageService::instance()->checkCode($data['code'], $data['mobile'],6)) {
+            $this->error('验证码错误',null);
         }
 
         $user['password']=md5($data['password']);