Ethanfly há 9 horas atrás
pai
commit
6a2d6da5c2
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      client/src/views/Analytics/Work/index.vue

+ 1 - 1
client/src/views/Analytics/Work/index.vue

@@ -860,11 +860,11 @@ const douyinMetricCards = computed<MetricCardConfig[]>(() => {
     { key: 'collectCount', label: '收藏量', value: formatNumber(d.collectCount || base?.collectsCount || 0) },
     { key: 'shareCount', label: '分享量', value: formatNumber(d.shareCount || base?.sharesCount || 0) },
     { key: 'fansIncrease', label: '涨粉量', value: formatNumber(d.fansIncrease || 0) },
-    { label: '平均观看时长', value: formatAvgWatchDurationSeconds(d.avgWatchDuration) },
     { key: 'completionRate', label: '完播率', value: formatRate(d.completionRate) },
     { key: 'twoSecondExitRate', label: '2s退出率', value: formatRate(d.twoSecondExitRate) },
     // 5s 完播率仅为昨日快照,不参与趋势联动
     { label: '5s完播率', value: formatRate(d.completionRate5s) },
+    { label: '平均观看时长', value: formatAvgWatchDurationSeconds(d.avgWatchDuration) },
   ];
 });