"use client" import { Card, CardContent } from "@/components/ui/card" import { LineChart, BarChart } from "@/components/charts" interface UserBehaviorAnalysisProps { timeRange: string } export function UserBehaviorAnalysis({ timeRange }: UserBehaviorAnalysisProps) { // 这里应该根据timeRange从API获取实际数据 return (
平均活跃天数/月
12.5
较上月增长 1.2
平均使用时长/日
42分钟
较上月增长 5分钟
平均交互次数/日
8.3
较上月增长 0.5

用户活跃度趋势

活跃时段分布

使用设备分布

用户行为轨迹分析

) }