修复跨域下无法使用正常使用短信验证的问题、版本更新至2.2.3
Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
parent
84d0f96158
commit
18d6e1bfd0
@ -69,10 +69,10 @@ class Login extends BasicApi
|
||||
// 用户信息验证
|
||||
$mobile = $this->request->post('mobile', '');
|
||||
if ($mobile) {
|
||||
if (session('captcha') != Request::param('captcha')) {
|
||||
if (cache('captcha') != Request::param('captcha')) {
|
||||
$this->error('验证码错误', 203);
|
||||
}
|
||||
if (session('captchaMobile') != $mobile) {
|
||||
if (cache('captchaMobile') != $mobile) {
|
||||
$this->error('手机号与验证码不匹配', 203);
|
||||
}
|
||||
$member = \app\common\Model\Member::where(['mobile' => $mobile])->order('id asc')->find();
|
||||
@ -134,8 +134,8 @@ class Login extends BasicApi
|
||||
$this->error('系统繁忙');
|
||||
}
|
||||
}
|
||||
session('captcha', $code);
|
||||
session('captchaMobile', $mobile);
|
||||
cache('captcha', $code);
|
||||
cache('captchaMobile', $mobile);
|
||||
$this->success('', config('sms.debug') ? $code : '');
|
||||
}
|
||||
|
||||
@ -170,10 +170,10 @@ class Login extends BasicApi
|
||||
if ($member) {
|
||||
$this->error('该手机已被注册', 202);
|
||||
}
|
||||
if (session('captcha') != $data['captcha']) {
|
||||
if (cache('captcha') != $data['captcha']) {
|
||||
$this->error('验证码错误', 203);
|
||||
}
|
||||
if (session('captchaMobile') != $data['mobile']) {
|
||||
if (cache('captchaMobile') != $data['mobile']) {
|
||||
$this->error('手机号与验证码不匹配', 203);
|
||||
}
|
||||
$memberData = [
|
||||
@ -206,10 +206,10 @@ class Login extends BasicApi
|
||||
public function _bindMobile()
|
||||
{
|
||||
$mobile = $this->request->post('mobile', '');
|
||||
if (session('captcha') != Request::param('captcha')) {
|
||||
if (cache('captcha') != Request::param('captcha')) {
|
||||
$this->error('验证码错误', 203);
|
||||
}
|
||||
if (session('captchaMobile') != $mobile) {
|
||||
if (cache('captchaMobile') != $mobile) {
|
||||
$this->error('手机号与验证码不匹配', 203);
|
||||
}
|
||||
$member = getCurrentMember();
|
||||
|
@ -6,7 +6,7 @@ return [
|
||||
// 应用名称
|
||||
'app_name' => 'pearProject',
|
||||
// 应用版本
|
||||
'app_version' => '2.2.2',
|
||||
'app_version' => '2.2.3',
|
||||
// 应用地址
|
||||
'app_host' => '',
|
||||
// 应用调试模式
|
||||
|
Loading…
x
Reference in New Issue
Block a user