diff --git a/app/analytics/page.tsx b/app/analytics/page.tsx index 85e0fe8..350120f 100644 --- a/app/analytics/page.tsx +++ b/app/analytics/page.tsx @@ -673,10 +673,10 @@ function AnalyticsContent() { /> - {/* 路径分析 - 仅在选中特定链接时显示 */} + {/* Path Analysis - 仅在选中特定链接时显示 */} {selectedShortUrl && selectedShortUrl.externalId && (
| + Time + | ++ Link Name + | ++ Original URL + | ++ Full URL + | ++ Event Type + | ++ Tags + | ++ User + | ++ Team/Project + | ++ IP/Location + | ++ Device Info + | +
|---|---|---|---|---|---|---|---|---|---|
| + {formatDate(info.eventTime)} + | +
+ {info.linkName}
+
+ ID: {event.link_id || '-'}
+
+ |
+ + + {info.originalUrl} + + | ++ + {info.fullUrl} + + | ++ + {info.eventType} + + | +
+
+ {info.tags && info.tags.length > 0 ? (
+ info.tags.map((tag, idx) => (
+
+ {tag}
+
+ ))
+ ) : (
+ -
+ )}
+
+ |
+
+ {info.userInfo}
+ {info.visitorId}...
+ |
+
+ {info.teamName}
+ {info.projectName}
+ |
+
+
+
+ IP:
+ {info.ipAddress}
+
+
+ Location:
+ {info.location}
+
+
+ |
+
+
+
+ Device:
+ {info.device}
+
+
+ Browser:
+ {info.browser}
+
+
+ OS:
+ {info.os}
+
+
+ |
+
+ Showing {events.length > 0 ? ((currentPage - 1) * pageSize) + 1 : 0} to {events.length > 0 ? ((currentPage - 1) * pageSize) + events.length : 0} of{' '} + {totalEvents} results +
+| 路径 | -点击数 | -百分比 | +Path | +Clicks | +Percentage |
|---|