xieruidong 2 years ago
parent
commit
be1afca45d
3 changed files with 13 additions and 17 deletions
  1. 1 7
      app/data/controller/api/Login.php
  2. 4 5
      app/data/controller/api/auth/Address.php
  3. 8 5
      config/apidoc.php

+ 1 - 7
app/data/controller/api/Login.php

@@ -10,8 +10,6 @@ use think\admin\Controller;
 
 /**
  * @Title("用户登录注册接口")
- * Class Login
- * @package app\data\controller\api
  */
 class Login extends Controller
 {
@@ -37,11 +35,7 @@ class Login extends Controller
     }
 
     /**
-     * 用户登录接口
-     * @throws \think\admin\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\DbException
-     * @throws \think\db\exception\ModelNotFoundException
+     * @Title("控制器初始化")
      */
     public function in()
     {

+ 4 - 5
app/data/controller/api/auth/Address.php

@@ -4,17 +4,16 @@ namespace app\data\controller\api\auth;
 
 use app\data\controller\api\Auth;
 use app\data\model\DataUserAddress;
+use hg\apidoc\annotation\Title;
 use think\admin\extend\CodeExtend;
 
 /**
- * 用户收货地址管理
- * Class Address
- * @package app\data\controller\api\auth
+ * @Title("用户收货地址管理")
  */
 class Address extends Auth
 {
     /**
-     * 添加收货地址
+     * @Title("添加收货地址")
      * @throws \think\db\exception\DataNotFoundException
      * @throws \think\db\exception\DbException
      * @throws \think\db\exception\ModelNotFoundException
@@ -129,4 +128,4 @@ class Address extends Auth
         $map = ['code' => $code, 'uuid' => $this->uuid, 'deleted' => 0];
         return DataUserAddress::mk()->withoutField('deleted')->where($map)->findOrEmpty()->toArray();
     }
-}
+}

+ 8 - 5
config/apidoc.php

@@ -14,12 +14,15 @@ return [
             'title'=>'前台api接口',
             'path'=>'app\data\controller',
             'folder'=>'data',
-            'groups'  => [
-                ['title'=>'多级模块','name'=>'api','controller'=>'Login',
-                    'children'=>[
-                        ['title'=>'多级v1','name'=>'in',],
+            'items'=>[
+                [
+                    'title'=>'V1.0',
+                    'path'=>'app\data\controller\api',
+                    'folder'=>'api','controllers'=>[
+                        \app\data\controller\api\Login::class,
+                        \app\data\controller\api\auth\Address::class,
                     ]
-                ],
+                ]
             ],
         ]
     ],