Merge branch 'feature_bugfix/251201_py_h5_ui' of https://git.valuefrontier.cn/vf/vf_react into feature_bugfix/251201_py_h5_ui

This commit is contained in:
2025-12-15 18:07:57 +08:00

View File

@@ -1050,6 +1050,13 @@ const ConceptCenter = () => {
color="white" color="white"
borderRadius="full" borderRadius="full"
px={2} px={2}
cursor="pointer"
_hover={{ bg: 'purple.400', transform: 'scale(1.05)' }}
transition="all 0.2s"
onClick={(e) => {
e.stopPropagation();
window.open(generateCompanyLink(getStockCode(stock)), '_blank');
}}
> >
<TagLabel fontSize="xs">{getStockName(stock)}</TagLabel> <TagLabel fontSize="xs">{getStockName(stock)}</TagLabel>
</Tag> </Tag>
@@ -1332,7 +1339,19 @@ const ConceptCenter = () => {
<> <>
{concept.stocks.slice(0, 3).map((stock, idx) => ( {concept.stocks.slice(0, 3).map((stock, idx) => (
<WrapItem key={idx}> <WrapItem key={idx}>
<Tag size="sm" bg="purple.500" color="white" borderRadius="full"> <Tag
size="sm"
bg="purple.500"
color="white"
borderRadius="full"
cursor="pointer"
_hover={{ bg: 'purple.400', transform: 'scale(1.05)' }}
transition="all 0.2s"
onClick={(e) => {
e.stopPropagation();
window.open(generateCompanyLink(getStockCode(stock)), '_blank');
}}
>
<TagLabel fontSize="xs">{getStockName(stock)}</TagLabel> <TagLabel fontSize="xs">{getStockName(stock)}</TagLabel>
</Tag> </Tag>
</WrapItem> </WrapItem>