refactor(FinancialPanorama): 添加数据加载 Hook

useFinancialData Hook 功能:
- 9个财务API并行加载(Promise.all)
- 股票信息、资产负债表、利润表、现金流量表
- 财务指标、主营业务、业绩预告
- 行业排名、期间对比
- 支持期数选择(4/8/12/16期)
- 自动响应 stockCode 变化重新加载

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
zdl
2025-12-12 15:01:26 +08:00
parent fb42ef566b
commit d9106bf9f7
2 changed files with 192 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
/**
* Hooks 统一导出
*/
export { useFinancialData } from './useFinancialData';
export type { default as UseFinancialDataReturn } from './useFinancialData';