This commit is contained in:
张成
2025-12-07 00:04:02 +08:00
parent 80dc582963
commit 82b6b6f80e
3 changed files with 37 additions and 23 deletions

View File

@@ -111,11 +111,11 @@ export interface ListActions {
getSearchHistory: () => Promise<void>;
clearHistory: () => void;
searchSuggestion: (val: string) => Promise<void>;
getSearchParams: () => Record<string, any>;
getSearchParams: (overrideArea?: [string, string]) => Record<string, any>;
loadMoreMatches: () => Promise<void>;
initialFilterSearch: (isSearchData?: boolean) => void;
setListData: (payload: IPayload) => void;
fetchGetGamesCount: () => Promise<void>;
fetchGetGamesCount: (overrideArea?: [string, string]) => Promise<void>;
getCurrentPageState: () => { currentPageState: any; currentPageKey: string };
updateCurrentPageState: (payload: Record<string, any>) => void;
updateDistanceQuickFilter: (payload: Record<string, any>) => void;
@@ -123,7 +123,7 @@ export interface ListActions {
getCityQrCode: () => Promise<void>;
getDistricts: () => Promise<BubbleOption[]>; // 新增:获取行政区
updateArea: (payload: [string, string]) => void;
refreshBothLists: () => Promise<void>;
refreshBothLists: (overrideArea?: [string, string]) => Promise<void>;
}
export interface IPayload {