feat: 趋势数据库从12条扩至30条,保留7天

This commit is contained in:
Yuzhiran Dev
2026-07-12 19:00:04 +08:00
parent e48416ac8b
commit 89cf7add0e
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ const displayItems = computed(() => {
async function fetchTrends() {
loading.value = true
try {
const data = await trendApi.list({ limit: 20 })
const data = await trendApi.list({ limit: 30 })
items.value = data.list || data.items || []
} catch (err) {
console.error('获取趋势失败:', err)