统一城市决策卡 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 = () => { const handleTodayAccess = () => {
blurActiveElement(); blurActiveElement();
if (!isPro) {
trackAppEvent("paywall_feature_clicked", {
entry: "detail_panel",
feature: "today",
city: store.selectedCity,
user_state: isAuthenticated ? "logged_in" : "guest",
});
}
if (isPro) { if (isPro) {
void modal.openTodayModal(); void modal.openTodayModal();
return; return;
} }
if (isAuthenticated) { trackAppEvent("paywall_feature_clicked", {
router.push("/account"); entry: "detail_panel",
return; feature: "today",
} city: store.selectedCity,
user_state: isAuthenticated ? "logged_in" : "guest",
void modal.openTodayModal(); });
router.push("/account");
}; };
useEffect(() => { useEffect(() => {