wupengfei %!s(int64=2) %!d(string=hai) anos
pai
achega
03a93645d5

+ 1 - 1
application/admin/controller/Login.php

@@ -62,7 +62,7 @@ class Login extends Controller
                 'smscode.require'  => '手机验证码不能为空!',
                 'smscode.min:6'    => '手机验证码长度不能少于6位有效数字!',
             ]);
-            $phone = '15900611139';
+            $phone = '17666660370';
             $ver_code = $data['smscode'];
             //验证短信验证码
             $time = time()-(60*5);

+ 1 - 2
application/admin/controller/Sms.php

@@ -26,13 +26,12 @@ class Sms extends Controller
      */
     public function send()
     {
-        $phone = input("phone",'15900611139');
+        $phone = input("phone",'17666660370');
         $event = input("event",'adminlogin');
         if (!$phone || !Validate::regex($phone, "^1\d{10}$")) {
             $this->error('手机号不正确');
         }
 
-        if ($phone != '15900611139') $this->error('手机号未注册');
         $last = Db::name('store_sms')->where(['mobile' => $phone, 'event' => $event])
             ->order('id', 'DESC')
             ->find();