feat: implement dashboard store and scan terminal components for city market analysis

This commit is contained in:
2569718930@qq.com
2026-04-24 06:31:29 +08:00
parent 92537b4637
commit c05cdd17c6
4 changed files with 113 additions and 118 deletions
+3 -2
View File
@@ -1237,12 +1237,13 @@ export function DashboardStoreProvider({
},
openHistory,
openTodayModal: async (forceRefresh?: boolean) => {
if (!selectedCity) {
const activeCity = selectedCityRef.current || selectedCity;
if (!activeCity) {
return;
}
mapStopMotionRef.current();
const cityName = selectedCity;
const cityName = activeCity;
const modalSeq = (modalOpenSeqRef.current += 1);
const isLatestModalRequest = () =>
modalOpenSeqRef.current === modalSeq &&