refactor: 更新风险监控页面标题为国际化支持,优化风险池控制台的标题处理

This commit is contained in:
2026-05-22 16:11:36 +08:00
parent 51891548a5
commit 2d4a23968e
29 changed files with 491 additions and 94 deletions

View File

@@ -9,7 +9,7 @@ export default async function AdminDrawRiskHotPage(props: {
return (
<RiskPoolsConsole
drawId={id}
title="热门号码监控"
titleKey="hotPageTitle"
soldOutOnly={false}
defaultSort="usage_desc"
/>

View File

@@ -9,7 +9,7 @@ export default async function AdminDrawRiskPoolsPage(props: {
return (
<RiskPoolsConsole
drawId={id}
title="全部风险池"
titleKey="allPoolsPageTitle"
soldOutOnly={false}
defaultSort="number_asc"
allowSortChange

View File

@@ -9,7 +9,7 @@ export default async function AdminDrawRiskSoldOutPage(props: {
return (
<RiskPoolsConsole
drawId={id}
title="售罄号码列表"
titleKey="soldOutPageTitle"
soldOutOnly
defaultSort="number_asc"
/>