|
@@ -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']);
|