update ui

This commit is contained in:
2025-11-14 15:36:02 +08:00
parent fc9b4e6257
commit 8828340d8c
6 changed files with 2 additions and 2 deletions

4
app.py
View File

@@ -10988,7 +10988,7 @@ def get_rise_analysis(seccode):
""")
with engine.connect() as conn:
result = conn.execute(query, **params).fetchall()
result = conn.execute(query, params).fetchall()
# 格式化数据
rise_analysis_data = []
@@ -11459,7 +11459,7 @@ def get_key_factors_timeline(company_code):
""")
with engine.connect() as conn:
factors_result = conn.execute(factors_query, **params).fetchall()
factors_result = conn.execute(factors_query, params).fetchall()
# 获取发展时间线事件
timeline_query = text("""