feat: cms overview and mobile case query

This commit is contained in:
2026-06-13 01:44:31 +08:00
parent 8fecaeeb54
commit 05ce7e987e
12 changed files with 1787 additions and 1 deletions
+10 -1
View File
@@ -1,9 +1,18 @@
from django.urls import path, include
# apps/cms 是 CMS 薄壳:聚合各领域 app 的 /api/cms/ 路由 + 未来的跨领域看板。
from . import stats, training
# apps/cms 是 CMS 薄壳:聚合各领域 app 的 /api/cms/ 路由 + 跨领域看板(概览)。
# 机构管理已迁至 organization 域(apps/organization),在此聚合。
urlpatterns = [
path('', include('apps.organization.urls')), # 机构、科室
path('', include('apps.user.cms_urls')), # 用户
path('', include('apps.case.cms_urls')), # 病例库 + AI 病例生成
# 训练记录(CMS-TRN-1 超管全平台只读)
path('training-records/', training.training_records, name='cms-training-records'),
# 各角色概览大屏(第八章)
path('stats/overview/', stats.platform_overview, name='cms-stats-overview'),
path('stats/hospital/overview/', stats.hospital_overview, name='cms-stats-hospital-overview'),
path('stats/content/overview/', stats.content_overview, name='cms-stats-content-overview'),
path('stats/teaching/overview/', stats.teaching_overview, name='cms-stats-teaching-overview'),
]