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