From 05dd0a6dc4b802d14984160f1c0ae3f4a6efee71 Mon Sep 17 00:00:00 2001 From: shangfangjian Date: Sun, 20 Sep 2026 23:11:23 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=AF=E5=88=86=E6=A6=9C=E5=88=86=E5=8C=BA?= =?UTF-8?q?=E6=A0=87=E7=AD=BE=E8=8B=B1=E8=AF=91=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Champions League → 欧冠区 - Europa League → 欧联区 - Conference League / Conference League Qualification → 欧协杯 - Relegation → 降级区 - Relegation Playoffs → 降级附加赛 Co-Authored-By: new-provider/LongCat-2.0 <> ) --- frontend/src/pages/Standings.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/pages/Standings.tsx b/frontend/src/pages/Standings.tsx index ee253de..b3ac699 100644 --- a/frontend/src/pages/Standings.tsx +++ b/frontend/src/pages/Standings.tsx @@ -23,7 +23,10 @@ const LEAGUES = [ const ZONE_META: Record = { 'Champions League': { 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' }, 'Relegation': { label: '降级区', cls: 'bg-rose-100 text-rose-700' }, + 'Relegation Playoffs': { label: '降级附加赛', cls: 'bg-orange-100 text-orange-700' }, } function zoneBadge(zone?: string | null) {