fix: 修复老板/陪玩排行榜预览数据不显示
API 直接返回数组,前端错误地使用了 data.rows 导致数据为空。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
a0466fda3b
commit
3d8d03a66e
+2
-2
@@ -25,12 +25,12 @@ async function loadStats() {
|
||||
|
||||
if (bossRankRes.ok) {
|
||||
const data = await bossRankRes.json();
|
||||
renderBossRankingPreview(data.rows || []);
|
||||
renderBossRankingPreview(data || []);
|
||||
}
|
||||
|
||||
if (partnerRankRes.ok) {
|
||||
const data = await partnerRankRes.json();
|
||||
renderPartnerRankingPreview(data.rows || []);
|
||||
renderPartnerRankingPreview(data || []);
|
||||
}
|
||||
|
||||
if (weeklyRes.ok) {
|
||||
|
||||
Reference in New Issue
Block a user