列表骨架屏

This commit is contained in:
juguohong
2025-08-24 19:58:00 +08:00
parent cda1a4b7cc
commit 58bacb3a47
13 changed files with 532 additions and 249 deletions

View File

@@ -10,6 +10,7 @@ export interface TennisMatch {
skillLevel: string
matchType: string
images: string[]
shinei: string
}
export interface IFilterOptions {
location: string
@@ -138,4 +139,19 @@ export interface FilterPopupProps {
onClear: () => void;
visible: boolean;
onClose: () => void;
}
// 列表卡片
export interface ListCardProps {
title: string;
dateTime: string;
location: string;
distance: string;
registeredCount: number;
maxCount: number;
skillLevel: string;
matchType: string;
images: string[];
shinei: string;
showSkeleton?: boolean;
}