fix(Ranking): cannot show the variety show ranking list (#576)

close #576
This commit is contained in:
Hakadao
2024-04-17 18:40:40 +08:00
parent b7aedfcf44
commit c5c1a16145
3 changed files with 8 additions and 10 deletions

View File

@@ -152,7 +152,7 @@ function getRankingPgc() {
season_type: activatedRankingType.value.seasonType,
}).then((response: RankingPgcResult) => {
if (response.code === 0)
Object.assign(PgcList, response.result.list)
Object.assign(PgcList, response.data.list)
}).finally(() => isLoading.value = false)
}