feat(analytics): 在访问统计中增加同比趋势显示

- 在访问概览 API 中新增昨日、上周、上月 PV 字段,用于计算趋势
- 在前端统计卡片中显示今日、本周、本月访问量的同比变化百分比
- 支持 163 邮箱作为邮件通知服务提供商,更新相关文档和设置界面
This commit is contained in:
anghunk
2026-02-05 16:13:05 +08:00
parent 65c0c20040
commit 5a0ecdaa91
6 changed files with 176 additions and 14 deletions

View File

@@ -88,8 +88,11 @@ export type VisitOverviewResponse = {
totalPv: number;
totalPages: number;
todayPv: number;
yesterdayPv?: number;
weekPv: number;
lastWeekPv?: number;
monthPv: number;
lastMonthPv?: number;
last30Days?: {
date: string;
total: number;