Upgrade V4 scan to city analysis

This commit is contained in:
2569718930@qq.com
2026-04-25 02:19:37 +08:00
parent 1db473d60a
commit 62a12257f0
6 changed files with 680 additions and 76 deletions
@@ -156,6 +156,16 @@ function getAiMeta(row: ScanOpportunityRow, locale: string) {
null,
};
}
if (decision === "watchlist") {
return {
label: locale === "en-US" ? "AI watch" : "AI 观察",
tone: "downgrade",
reason:
locale === "en-US"
? row.ai_watchlist_reason_en || row.ai_watchlist_reason_zh
: row.ai_watchlist_reason_zh || row.ai_watchlist_reason_en,
};
}
return null;
}