修复单双打 ,多选功能

This commit is contained in:
张成
2025-12-06 22:02:27 +08:00
parent 2c83d9faa5
commit 10ff967f4a
5 changed files with 37 additions and 19 deletions

View File

@@ -15,10 +15,10 @@ export interface TennisMatch {
}
export interface IFilterOptions {
dateRange: [string, string]; // 日期区间
timeSlot?: string; // 时间段
timeSlot?: string | string[]; // 时间段(支持多选)
ntrp?: [number, number]; // NTRP 水平区间
venueType?: string; // 场地类型
playType?: string; // 玩法
venueType?: string | string[]; // 场地类型(支持多选)
playType?: string | string[]; // 玩法(支持多选)
distanceFilter?: string;
}
// 页面状态接口