完善支付页面与路由的交互实现

This commit is contained in:
2025-12-09 15:25:54 +08:00
parent 5202f8190e
commit 2f61856ff6
5 changed files with 19 additions and 52 deletions

View File

@@ -10,7 +10,7 @@ export type PurchasePageProps = {
export default async function PurchasePage(props: PurchasePageProps) {
return (
<Page className="flex-col">
<Purchase defaultTab={(await props.searchParams)?.type ?? 'short'}/>
<Purchase/>
</Page>
)
}