统一城市决策卡 Pro 门禁:游客和免费用户点击 Today 引导至账户页

This commit is contained in:
2569718930@qq.com
2026-05-18 19:06:04 +08:00
parent 3e941a238a
commit 426bd7deab
+7 -15
View File
@@ -140,26 +140,18 @@ export function DetailPanel({
const handleTodayAccess = () => {
blurActiveElement();
if (!isPro) {
trackAppEvent("paywall_feature_clicked", {
entry: "detail_panel",
feature: "today",
city: store.selectedCity,
user_state: isAuthenticated ? "logged_in" : "guest",
});
}
if (isPro) {
void modal.openTodayModal();
return;
}
if (isAuthenticated) {
router.push("/account");
return;
}
void modal.openTodayModal();
trackAppEvent("paywall_feature_clicked", {
entry: "detail_panel",
feature: "today",
city: store.selectedCity,
user_state: isAuthenticated ? "logged_in" : "guest",
});
router.push("/account");
};
useEffect(() => {