Merge branch 'feature_bugfix/251113_ui' into feature_bugfix/251113_bugfix

* feature_bugfix/251113_ui:
  update ui
  update ui
  update ui
  update ui
  update ui
This commit is contained in:
zdl
2025-11-14 16:16:10 +08:00
12 changed files with 25226 additions and 49 deletions

View File

@@ -311,6 +311,7 @@ const StockListItem = ({
data={stock.relation_desc}
title=""
showAIBadge={true}
textColor={PROFESSIONAL_COLORS.text.primary}
containerStyle={{
backgroundColor: 'transparent',
borderRadius: '0',

View File

@@ -344,6 +344,7 @@ const HistoricalEvents = ({
data={content}
title=""
showAIBadge={true}
textColor={PROFESSIONAL_COLORS.text.primary}
containerStyle={{
backgroundColor: useColorModeValue('#f7fafc', 'rgba(45, 55, 72, 0.6)'),
borderRadius: '8px',

View File

@@ -972,6 +972,7 @@ const TransmissionChainAnalysis = ({ eventId }) => {
<CitedContent
data={selectedNode.extra.description}
title=""
textColor={PROFESSIONAL_COLORS.text.primary}
/>
) : (
`${selectedNode.extra.description}AI合成`
@@ -1081,7 +1082,8 @@ const TransmissionChainAnalysis = ({ eventId }) => {
data={parent.transmission_mechanism}
title=""
prefix="机制:"
prefixStyle={{ fontSize: 12, color: '#666', fontWeight: 'bold' }}
prefixStyle={{ fontSize: 12, color: PROFESSIONAL_COLORS.text.secondary, fontWeight: 'bold' }}
textColor={PROFESSIONAL_COLORS.text.primary}
containerStyle={{ marginTop: 8 }}
showAIBadge={false}
/>
@@ -1136,7 +1138,8 @@ const TransmissionChainAnalysis = ({ eventId }) => {
data={child.transmission_mechanism}
title=""
prefix="机制:"
prefixStyle={{ fontSize: 12, color: '#666', fontWeight: 'bold' }}
prefixStyle={{ fontSize: 12, color: PROFESSIONAL_COLORS.text.secondary, fontWeight: 'bold' }}
textColor={PROFESSIONAL_COLORS.text.primary}
containerStyle={{ marginTop: 8 }}
showAIBadge={false}
/>