|
@@ -5,6 +5,7 @@ namespace app\api\controller;
|
|
|
use app\common\controller\Api;
|
|
|
use app\common\library\Ems;
|
|
|
use app\common\library\Sms;
|
|
|
+use app\common\library\Sms as Smslib;
|
|
|
use app\common\model\Leave;
|
|
|
use fast\Random;
|
|
|
use think\Config;
|
|
@@ -53,7 +54,7 @@ class User extends Api
|
|
|
if (!Validate::regex($mobile, "^1\d{10}$")) {
|
|
|
$this->error(__('Mobile is incorrect'));
|
|
|
}
|
|
|
- if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
|
|
|
+ if (!Sms::check($mobile, $captcha, 'register')) {
|
|
|
$this->error(__('Captcha is incorrect'));
|
|
|
}
|
|
|
$user = \app\common\model\User::getByMobile($mobile);
|