添加实时比分功能,更新比赛数据结构,优化比赛卡片显示

This commit is contained in:
yuchenglong
2026-01-19 14:38:39 +08:00
parent ecd65098b0
commit 2e9938542a
4 changed files with 264 additions and 74 deletions

View File

@@ -12,14 +12,16 @@ export interface Match {
id: string;
league: string;
time: string;
date: string;
home: string;
away: string;
meta?: string;
scoreText: string;
fav: boolean;
leagueId?: number;
// sport: string;
sportId?: number;
leagueId?: number;
isLive?: boolean;
meta?: string;
}
export interface LiveScoreMatch {