feat(ui): 重构注册审核平台原型界面

This commit is contained in:
2026-06-03 08:41:48 +08:00
parent 77166b5cd3
commit b2c1da3f02
24 changed files with 2563 additions and 536 deletions

View File

@@ -55,6 +55,7 @@ INSTALLED_APPS = [
"apps.documents",
"apps.chat",
"apps.audit",
"apps.platform_ui",
]
MIDDLEWARE = [

View File

@@ -11,6 +11,7 @@ urlpatterns = [
path("chat/", include("apps.chat.urls")),
path("documents/", include("apps.documents.urls")),
path("audit/", include("apps.audit.urls")),
path("platform/", include("apps.platform_ui.urls")),
]
if settings.DEBUG: