feat: 重构管理端列表与风控/结算导航,新增表格导出和结算审核确认
This commit is contained in:
9
src/app/admin/(shell)/draws/[drawId]/risk/page.tsx
Normal file
9
src/app/admin/(shell)/draws/[drawId]/risk/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { redirect } from "next/navigation";
|
||||
|
||||
export default async function AdminDrawRiskIndexPage(props: {
|
||||
params: Promise<{ drawId: string }>;
|
||||
}) {
|
||||
const { drawId } = await props.params;
|
||||
|
||||
redirect(`/admin/draws/${drawId}/risk/occupancy`);
|
||||
}
|
||||
Reference in New Issue
Block a user