|
@@ -17,10 +17,8 @@ class Sms extends Api
|
|
|
|
|
|
/**
|
|
/**
|
|
* 发送验证码
|
|
* 发送验证码
|
|
- *
|
|
|
|
* @ApiMethod (POST)
|
|
* @ApiMethod (POST)
|
|
- * @param string $mobile 手机号
|
|
|
|
- * @param string $event 事件名称
|
|
|
|
|
|
+ * @ApiParams (name="mobile", type="string", required=true, description="手机号")
|
|
*/
|
|
*/
|
|
public function send()
|
|
public function send()
|
|
{
|
|
{
|
|
@@ -43,7 +41,7 @@ class Sms extends Api
|
|
$userinfo = User::getByMobile($mobile);
|
|
$userinfo = User::getByMobile($mobile);
|
|
if ($event == 'register' && $userinfo) {
|
|
if ($event == 'register' && $userinfo) {
|
|
//已被注册
|
|
//已被注册
|
|
- $this->error(__('已被注册'));
|
|
|
|
|
|
+ //$this->error(__('已被注册'));
|
|
} elseif (in_array($event, ['changemobile']) && $userinfo) {
|
|
} elseif (in_array($event, ['changemobile']) && $userinfo) {
|
|
//被占用
|
|
//被占用
|
|
$this->error(__('已被占用'));
|
|
$this->error(__('已被占用'));
|