tongshanglei 2 年之前
父節點
當前提交
33e631ccb4
共有 4 個文件被更改,包括 123 次插入0 次删除
  1. 23 0
      catch/api/ApiService.php
  2. 69 0
      catch/api/controller/Api.php
  3. 15 0
      catch/api/module.json
  4. 16 0
      catch/api/route.php

+ 23 - 0
catch/api/ApiService.php

@@ -0,0 +1,23 @@
+<?php
+// +----------------------------------------------------------------------
+// | CatchAdmin [Just Like ~ ]
+// +----------------------------------------------------------------------
+// | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
+// +----------------------------------------------------------------------
+// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
+// +----------------------------------------------------------------------
+// | Author: JaguarJack [ njphper@gmail.com ]
+// +----------------------------------------------------------------------
+
+namespace catchAdmin\api;
+
+use catcher\ModuleService;
+
+class ApiService extends ModuleService
+{
+    public function loadRouteFrom()
+    {
+        // TODO: Implement loadRouteFrom() method.
+        return __DIR__ . DIRECTORY_SEPARATOR . 'route.php';
+    }
+}

+ 69 - 0
catch/api/controller/Api.php

@@ -0,0 +1,69 @@
+<?php
+
+namespace catchAdmin\api\controller;
+
+use catcher\base\CatchRequest as Request;
+use catcher\CatchResponse;
+use catcher\base\CatchController;
+use catchAdmin\api\model\ as model;
+
+class Api extends CatchController
+{
+    protected $model;
+    
+    public function __construct(Model $model)
+    {
+        $this->model = $model;
+    }
+    
+    /**
+     * 列表
+     * @time 2022年06月09日 10:03
+     * @param Request $request 
+     */
+    public function index(Request $request) : \think\Response
+    {
+        return CatchResponse::paginate($this->model->getList());
+    }
+    
+    /**
+     * 保存信息
+     * @time 2022年06月09日 10:03
+     * @param Request $request 
+     */
+    public function save(Request $request) : \think\Response
+    {
+        return CatchResponse::success($this->model->storeBy($request->post()));
+    }
+    
+    /**
+     * 读取
+     * @time 2022年06月09日 10:03
+     * @param $id 
+     */
+    public function read($id) : \think\Response
+    {
+        return CatchResponse::success($this->model->findBy($id));
+    }
+    
+    /**
+     * 更新
+     * @time 2022年06月09日 10:03
+     * @param Request $request 
+     * @param $id
+     */
+    public function update(Request $request, $id) : \think\Response
+    {
+        return CatchResponse::success($this->model->updateBy($id, $request->post()));
+    }
+    
+    /**
+     * 删除
+     * @time 2022年06月09日 10:03
+     * @param $id
+     */
+    public function delete($id) : \think\Response
+    {
+        return CatchResponse::success($this->model->deleteBy($id));
+    }
+}

+ 15 - 0
catch/api/module.json

@@ -0,0 +1,15 @@
+{
+    "name": "api",
+    "alias": "api",
+    "description": "api接口",
+    "version": "1.0.0",
+    "keywords": ["api"],
+    "order": 0,
+    "services": [
+        "\\catchAdmin\\api\\ApiService"
+    ],
+    "aliases": {},
+    "files": [],
+    "requires": [],
+    "enable": true
+}

+ 16 - 0
catch/api/route.php

@@ -0,0 +1,16 @@
+<?php
+// +----------------------------------------------------------------------
+// | CatchAdmin [Just Like ~ ]
+// +----------------------------------------------------------------------
+// | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
+// +----------------------------------------------------------------------
+// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
+// +----------------------------------------------------------------------
+// | Author: JaguarJack [ njphper@gmail.com ]
+// +----------------------------------------------------------------------
+
+// you should use `$router`
+$router->group(function () use ($router){
+	// api路由
+	$router->resource('api', '\catchAdmin\api\controller\Api');
+})->middleware('auth');