品种管理交易所字段支持中英双语展示,加宽表单面板

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
fish
2026-07-28 14:54:49 +08:00
parent 54ce2c97ce
commit 3d2c8e13db
2 changed files with 16 additions and 6 deletions
+7 -1
View File
@@ -9,7 +9,13 @@ from app.collector import (
router = APIRouter(prefix="/admin", tags=["admin"])
EXCHANGES = ["CZCE", "DCE", "SHFE", "CFFEX", "INE"]
EXCHANGES = [
("CZCE", "郑州商品交易所 CZCE"),
("DCE", "大连商品交易所 DCE"),
("SHFE", "上海期货交易所 SHFE"),
("CFFEX", "中国金融期货交易所 CFFEX"),
("INE", "上海国际能源交易中心 INE"),
]
@router.get("/", response_class=HTMLResponse)