tongshanglei 2 years ago
parent
commit
bc9faeb4e5
2 changed files with 19 additions and 3 deletions
  1. 17 1
      catch/api/controller/Api.php
  2. 2 2
      catch/api/route.php

+ 17 - 1
catch/api/controller/Api.php

@@ -9,5 +9,21 @@ use catcher\base\CatchController;
 
 class Api extends CatchController
 {
-    
+    /**
+     * 获取所有用户列表
+     * @time 2022年06月09日 14:22
+     */
+    public function getUserList(){
+        $imei = $_GET['imei'];
+        if (empty($imei)) {
+            $res=['success'=>false,'message'=>'缺少设备IMEI号参数'];
+            return json_encode($res,JSON_UNESCAPED_UNICODE);
+        }
+        //检测imei号是否在数据库中
+        
+
+        //请求成功返回数据
+        $res=['success'=>true,'message'=>'获取成功','data'=>''];
+        return json_encode($res,JSON_UNESCAPED_UNICODE);
+    }
 }

+ 2 - 2
catch/api/route.php

@@ -12,5 +12,5 @@
 // you should use `$router`
 $router->group(function () use ($router){
 	// api路由
-	$router->resource('api', '\catchAdmin\api\controller\Api');
-})->middleware('auth');
+	$router->get('api/getUserList', '\catchAdmin\api\controller\Api@getUserList');
+});