列表搜索页面
This commit is contained in:
@@ -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 组件
|
||||
|
||||
Reference in New Issue
Block a user