更新Company页面的UI为FUI风格

This commit is contained in:
2025-12-21 23:43:41 +08:00
parent 83634e2dd5
commit fc98f53a79
2 changed files with 3 additions and 704 deletions

6
app.py
View File

@@ -11126,9 +11126,9 @@ def get_events_by_mainline():
# 批量查询 related_concepts
related_concepts_query = db.session.query(
RelatedConcept.event_id,
RelatedConcept.concept
).filter(RelatedConcept.event_id.in_(event_ids)).all()
RelatedConcepts.event_id,
RelatedConcepts.concept
).filter(RelatedConcepts.event_id.in_(event_ids)).all()
# 构建 event_id -> concepts 映射
event_concepts_map = {} # { event_id: [concept1, concept2, ...] }