完成产品审查剩余修复:新手指引、反馈入口、付费墙预览
P1-4:新增 WelcomeOverlay 新手指引 - 首次访问时显示 3 步引导:①从地图选城市 ②查看城市简报 ③解锁 Pro 深入分析 - 圆点进度指示、跳过/下一步按钮、点背景可关闭 - 看过一次后 localStorage 标记不再显示 P1-5:付费墙增加功能预览 - HistoryModal 在付费墙上方展示功能说明文案 - 新增 i18n 键 history.previewTitle / history.previewDesc(中英双语) P2-9:新增反馈入口 - 顶栏增加 Telegram 反馈按钮(MessageCircle 图标) - 点击跳转 PolyWeather 社群 Tested: npx tsc --noEmit
This commit is contained in:
@@ -92,7 +92,17 @@ export function HistoryModal() {
|
||||
</div>
|
||||
</div>
|
||||
) : !isPro ? (
|
||||
<ProFeaturePaywall feature="history" onClose={store.closeHistory} />
|
||||
<>
|
||||
<div className="modal-content" style={{ padding: "24px 28px 0", textAlign: "center" }}>
|
||||
<h3 style={{ fontSize: 18, fontWeight: 800, color: "var(--color-text-primary)", margin: "0 0 8px" }}>
|
||||
{t("history.previewTitle")}
|
||||
</h3>
|
||||
<p style={{ fontSize: 13, color: "var(--color-text-secondary)", lineHeight: 1.6, margin: 0 }}>
|
||||
{t("history.previewDesc")}
|
||||
</p>
|
||||
</div>
|
||||
<ProFeaturePaywall feature="history" onClose={store.closeHistory} />
|
||||
</>
|
||||
) : (
|
||||
<div className="modal-content history-modal">
|
||||
<div className="modal-header">
|
||||
|
||||
Reference in New Issue
Block a user