列表搜索页面

This commit is contained in:
juguohong
2025-09-01 00:03:43 +08:00
parent 7d4eb3d031
commit fdd6b8f7cb
18 changed files with 315 additions and 83 deletions

View File

@@ -21,6 +21,7 @@ export interface IFilterOptions {
}
export interface ListState {
matches: TennisMatch[]
recommendList: TennisMatch[]
loading: boolean
error: string | null
searchValue: string
@@ -45,6 +46,9 @@ export interface ListState {
suggestionList: string[]
isShowSuggestion: boolean
isShowInputCustomerNavBar: boolean
isShowResultInputCustomerNavBar: boolean
isOpenDistancePopup: boolean,
isOpenQuickFilterPopup: boolean,
}
export interface ListActions {
@@ -72,6 +76,8 @@ export interface MenuFilterProps {
wrapperClassName?: string;
itemClassName?: string;
name: string;
onOpen?: () => void;
onClose?: () => void;
}
// 距离筛选
@@ -82,6 +88,8 @@ export interface DistanceFilterProps {
wrapperClassName?: string;
itemClassName?: string;
name: string;
onOpen?: () => void;
onClose?: () => void;
}
// bubble 组件