feat: 重构管理端列表与风控/结算导航,新增表格导出和结算审核确认
This commit is contained in:
17
src/app/admin/(shell)/draws/[drawId]/risk/sold-out/page.tsx
Normal file
17
src/app/admin/(shell)/draws/[drawId]/risk/sold-out/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { RiskPoolsConsole } from "@/modules/risk/risk-pools-console";
|
||||
|
||||
export default async function AdminDrawRiskSoldOutPage(props: {
|
||||
params: Promise<{ drawId: string }>;
|
||||
}) {
|
||||
const { drawId } = await props.params;
|
||||
const id = Number(drawId);
|
||||
|
||||
return (
|
||||
<RiskPoolsConsole
|
||||
drawId={id}
|
||||
title="售罄号码列表"
|
||||
soldOutOnly
|
||||
defaultSort="number_asc"
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user