修复heropanel无法下拉背景页面

This commit is contained in:
2026-01-14 14:25:46 +08:00
parent b13567237f
commit ecd249eafd
3 changed files with 58 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ import PaginationControl from '../PaginationControl';
* @param {Function} onEventSelect - 事件选择回调
* @param {Object} eventFollowStatus - 事件关注状态
* @param {Function} onToggleFollow - 关注按钮回调
* @param {Function} onVoteChange - 投票变化回调 { eventId, voteType: 'bullish' | 'bearish' }
* @param {Function} getTimelineBoxStyle - 时间线样式获取函数
* @param {string} borderColor - 边框颜色
* @param {number} currentPage - 当前页码
@@ -40,6 +41,7 @@ const VerticalModeLayout = React.memo(({
onEventSelect,
eventFollowStatus,
onToggleFollow,
onVoteChange,
getTimelineBoxStyle,
borderColor,
currentPage = 1,
@@ -124,6 +126,7 @@ const VerticalModeLayout = React.memo(({
isFollowing={eventFollowStatus[event.id]?.isFollowing}
followerCount={eventFollowStatus[event.id]?.followerCount}
onToggleFollow={onToggleFollow}
onVoteChange={onVoteChange}
timelineStyle={getTimelineBoxStyle()}
borderColor={borderColor}
indicatorSize="default"