quguofeng пре 1 година
родитељ
комит
6142660a4b
2 измењених фајлова са 4 додато и 49 уклоњено
  1. 0 22
      application/api/controller/Goods.php
  2. 4 27
      application/api/controller/User.php

+ 0 - 22
application/api/controller/Goods.php

@@ -1,22 +0,0 @@
-<?php
-
-namespace app\api\controller;
-
-use app\common\controller\Api;
-use app\common\model\Goods as GoodsModel;
-
-
-class Goods extends Api
-{
-    protected $noNeedLogin = ['*'];
-    protected $noNeedRight = ['*'];
-
-    /**
-     * 产品列表
-     *
-     */
-    public function goodslist(){
-        $this->success('请求成功',GoodsModel::where('status',1)->select());
-    }
-
-}

+ 4 - 27
application/api/controller/User.php

@@ -37,36 +37,13 @@ class User extends Api
     }
 
     /**
-     * 会员登录
-     *
-     * @ApiMethod (POST)
-     * @param string $account  账号
-     * @param string $password 密码
-     */
-    public function login()
-    {
-        $account = $this->request->post('account');
-        $password = $this->request->post('password');
-        if (!$account || !$password) {
-            $this->error(__('Invalid parameters'));
-        }
-        $ret = $this->auth->login($account, $password);
-        if ($ret) {
-            $data = ['userinfo' => $this->auth->getUserinfo()];
-            $this->success(__('Logged in successful'), $data);
-        } else {
-            $this->error($this->auth->getError());
-        }
-    }
-
-    /**
      * 手机验证码登录
      *
      * @ApiMethod (POST)
      * @param string $mobile  手机号
      * @param string $captcha 验证码
      */
-    public function mobilelogin()
+    public function mobile_login()
     {
         $mobile = $this->request->post('mobile');
         $captcha = $this->request->post('captcha');
@@ -76,9 +53,9 @@ class User extends Api
         if (!Validate::regex($mobile, "^1\d{10}$")) {
             $this->error(__('Mobile is incorrect'));
         }
-//        if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
-//            $this->error(__('Captcha is incorrect'));
-//        }
+        if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
+            $this->error(__('Captcha is incorrect'));
+        }
         $user = \app\common\model\User::getByMobile($mobile);
         if ($user) {
             if ($user->status != 'normal') {