添加套餐提取记录功能

This commit is contained in:
Eamon-meng
2025-12-19 15:15:54 +08:00
parent fa942d4b99
commit e9881d2521
8 changed files with 231 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
import {ReactNode} from 'react'
import {Metadata} from 'next'
import {Suspense} from 'react'
export async function generateMetadata(): Promise<Metadata> {
return {
title: 'IP管理 - 蓝狐代理',
@@ -12,5 +12,5 @@ export type ChannelsLayoutProps = {
}
export default async function ChannelsLayout(props: ChannelsLayoutProps) {
return props.children
return <Suspense>{props.children}</Suspense>
}