feat: 标准资源使用独立页面并优化详情布局

This commit is contained in:
czl231
2026-08-11 00:49:41 +08:00
parent 7242048abf
commit 13daa996a2
39 changed files with 3826 additions and 2106 deletions

View File

@@ -202,6 +202,7 @@ func registerPlatformRoute(group *gin.RouterGroup) {
account.GET("", platformlogic.ListPlatformAccount)
account.POST("", platformlogic.CreatePlatformAccount)
account.GET("/:identity", platformlogic.GetPlatformAccount)
account.GET("/:identity/avatar", platformlogic.GetPlatformAccountAvatar)
account.PUT("/:identity", platformlogic.UpdatePlatformAccount)
account.PATCH("/:identity/status", platformlogic.UpdatePlatformAccountStatus)
account.DELETE("/:identity", platformlogic.ArchivePlatformAccount)