diff --git a/src/views/Company/components/FinancialPanorama/index.tsx b/src/views/Company/components/FinancialPanorama/index.tsx index 6870edf2..ef3c5dd0 100644 --- a/src/views/Company/components/FinancialPanorama/index.tsx +++ b/src/views/Company/components/FinancialPanorama/index.tsx @@ -52,7 +52,7 @@ import SubTabContainer, { type SubTabConfig } from '@components/SubTabContainer' import { useFinancialData, type DataTypeKey } from './hooks'; import { COLORS } from './constants'; import { calculateYoYChange, getCellBackground, getMetricChartOption } from './utils'; -import { PeriodSelector, KeyMetricsOverview, StockInfoHeader, MainBusinessAnalysis } from './components'; +import { PeriodSelector, FinancialOverviewPanel, MainBusinessAnalysis } from './components'; import { BalanceSheetTab, IncomeStatementTab, @@ -275,32 +275,24 @@ const FinancialPanorama: React.FC = ({ stockCode: propSt return ( - {/* 股票信息头部 */} + {/* 财务全景面板(三列布局:成长能力、盈利与回报、风险与运营) */} {loading ? ( - + ) : ( - )} - {/* 关键指标速览 */} - {!loading && stockInfo && financialMetrics.length > 0 && ( - - )} - {/* 主营业务 */} {!loading && stockInfo && ( - - - - 主营业务 - - - - + + + 主营业务 + + + )} {/* 三大财务报表 - 使用 SubTabContainer 二级导航 */}