列表骨架屏
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user