初始化

This commit is contained in:
2025-07-14 15:53:23 +08:00
parent ace33d202f
commit 1bd79c57ee
170 changed files with 532 additions and 467 deletions
+7 -1
View File
@@ -718,7 +718,7 @@ class UserController extends BaseController
{
// 检查用户是否登录
if (!cookie('user_account')) {
return json(['code'=> -1,'msg'=> '请先登录']);
return json(['code' => -1, 'msg' => '请先登录']);
}
// 获取当前用户信息
@@ -751,4 +751,10 @@ class UserController extends BaseController
return json(['code' => -1, 'msg' => '二维码生成失败: ' . $e->getMessage()]);
}
}
//getSecurityInfo
public function getSecurityInfo()
{
}
}