feat: 重构管理端列表与风控/结算导航,新增表格导出和结算审核确认

This commit is contained in:
2026-05-19 17:06:56 +08:00
parent a1fb163f1b
commit 37b13278ef
47 changed files with 1255 additions and 524 deletions

View File

@@ -0,0 +1,17 @@
import { RiskPoolsConsole } from "@/modules/risk/risk-pools-console";
export default async function AdminDrawRiskHotPage(props: {
params: Promise<{ drawId: string }>;
}) {
const { drawId } = await props.params;
const id = Number(drawId);
return (
<RiskPoolsConsole
drawId={id}
title="热门号码监控"
soldOutOnly={false}
defaultSort="usage_desc"
/>
);
}