songxingwei 2 năm trước cách đây
mục cha
commit
6652f5b8b4
2 tập tin đã thay đổi với 14 bổ sung3 xóa
  1. 12 3
      app/data/controller/api/auth/Center.php
  2. 2 0
      config/apidoc.php

+ 12 - 3
app/data/controller/api/auth/Center.php

@@ -9,14 +9,18 @@ use app\data\service\UserAdminService;
 use app\data\service\UserUpgradeService;
 use think\admin\Storage;
 use think\exception\HttpResponseException;
+use think\admin\Controller;
+use hg\apidoc\annotation\Title;
+use hg\apidoc\annotation\Method;
+use hg\apidoc\annotation\Param;
+use hg\apidoc\annotation\Returned;
 
 /**
- * 用户资料管理
- * Class Center
- * @package app\data\controller\api\auth
+ * @Title("个人中心")
  */
 class Center extends Auth
 {
+    protected $noNeedLogin=[];
     /**
      * 更新用户资料
      */
@@ -43,6 +47,11 @@ class Center extends Auth
     /**
      * 获取用户资料
      */
+    /**
+     * @Title("获取用户资料")
+     * @Method("post")
+     * @Returned("token.token",desc="token")
+     */
     public function get()
     {
         $this->success('获取用户资料', $this->getUser());

+ 2 - 0
config/apidoc.php

@@ -27,6 +27,8 @@ return [
 
                         \app\data\controller\api\Order::class,
 
+                        \app\data\controller\api\auth\Center::class,
+
 
 //                        \app\data\controller\api\auth\Address::class,