网球详情页

This commit is contained in:
xianyi
2026-01-22 14:05:39 +08:00
parent 9e7f8dadec
commit a279083252
13 changed files with 443 additions and 46 deletions

View File

@@ -103,11 +103,11 @@ export interface LiveScoreMatch {
substitutes?: {
time: string;
home_scorer:
| { in: string; out: string; in_id: number; out_id: number }
| any[];
| { in: string; out: string; in_id: number; out_id: number }
| any[];
away_scorer:
| { in: string; out: string; in_id: number; out_id: number }
| any[];
| { in: string; out: string; in_id: number; out_id: number }
| any[];
info: string;
info_time: string;
score: string;
@@ -305,6 +305,14 @@ export interface MatchDetailData {
eventType: string;
eventToss: string;
eventManOfMatch: string;
eventFirstPlayer?: string;
eventSecondPlayer?: string;
eventFirstPlayerLogo?: string;
eventSecondPlayerLogo?: string;
firstPlayerKey?: string;
secondPlayerKey?: string;
eventGameResult?: string;
scores?: any[];
events?: MatchEvents;
players?: {
home_team?: Player[];