From 81b1f4838297b29c8b7b09fb304d7732caafb147 Mon Sep 17 00:00:00 2001 From: shangfangjian Date: Sun, 20 Sep 2026 23:34:52 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=AF=E5=88=86=E6=A6=9C=E8=A1=A5=E5=85=A8?= =?UTF-8?q?=E5=89=A9=E4=BD=99=E5=88=86=E5=8C=BA=E7=BF=BB=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增: - Champions League Qualification → 欧冠资格 - Qualification Playoffs → 资格附加赛 现已覆盖数据库中所有8种分区类型。 Co-Authored-By: new-provider/LongCat-2.0 <> ) --- frontend/src/pages/Standings.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/pages/Standings.tsx b/frontend/src/pages/Standings.tsx index 393b8be..c864e2d 100644 --- a/frontend/src/pages/Standings.tsx +++ b/frontend/src/pages/Standings.tsx @@ -23,6 +23,7 @@ const LEAGUES = [ const ZONE_META: Record = { // 欧战资格 'Champions League': { label: '欧冠区', cls: 'bg-emerald-100 text-emerald-700' }, + 'Champions League Qualification': { label: '欧冠资格', cls: 'bg-emerald-100 text-emerald-700' }, 'Europa League': { label: '欧联区', cls: 'bg-amber-100 text-amber-700' }, 'Conference League': { label: '欧协杯', cls: 'bg-sky-100 text-sky-700' }, 'Conference League Qualification': { label: '欧协杯', cls: 'bg-sky-100 text-sky-700' }, @@ -39,6 +40,7 @@ const ZONE_META: Record = { // 附加赛 'Playoffs': { label: '附加赛', cls: 'bg-amber-100 text-amber-700' }, 'Championship Playoffs': { label: '升级附加赛', cls: 'bg-amber-100 text-amber-700' }, + 'Qualification Playoffs': { label: '资格附加赛', cls: 'bg-sky-100 text-sky-700' }, 'Qualification': { label: '资格赛', cls: 'bg-sky-100 text-sky-700' }, }