quguofeng 1 năm trước cách đây
mục cha
commit
954a894418
1 tập tin đã thay đổi với 2 bổ sung4 xóa
  1. 2 4
      application/api/controller/Sms.php

+ 2 - 4
application/api/controller/Sms.php

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