修改concept

This commit is contained in:
2025-12-28 13:42:57 +08:00
parent 09f187f95a
commit f35a5b4b47
7 changed files with 202 additions and 7 deletions

View File

@@ -55,6 +55,7 @@ import HotspotOverview from './components/HotspotOverview';
import FlexScreen from './components/FlexScreen';
import { echarts } from '@lib/echarts';
import { logger } from '../../utils/logger';
import { getConceptHtmlUrl } from '../../utils/textUtils';
import tradingDays from '../../data/tradingDays.json';
import { useStockOverviewEvents } from './hooks/useStockOverviewEvents';
import { GLASS_BLUR } from '@/constants/glassConfig';
@@ -534,7 +535,7 @@ const StockOverview = () => {
// 🎯 追踪概念点击
trackConceptClicked(concept, rank);
const htmlPath = `/htmls/${concept.concept_name}.html`;
const htmlPath = getConceptHtmlUrl(concept.concept_name);
window.open(htmlPath, '_blank');
};