|
@@ -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());
|