diff --git a/README.md b/README.md
index f112bb3..5b34e06 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,5 @@
## TODO
-提取记录,长效动态统计
-
购买页固定套餐
### 禁止直接依赖 form
@@ -10,6 +8,8 @@
### 次要
+业务定制页面每月需求用量,可选项需要确认是否合理
+
页头高度降低
帮助中心文档优化
diff --git a/src/app/admin/whitelist/page.tsx b/src/app/admin/whitelist/page.tsx
index 129f0c4..7e7c9af 100644
--- a/src/app/admin/whitelist/page.tsx
+++ b/src/app/admin/whitelist/page.tsx
@@ -24,6 +24,7 @@ import Page from '@/components/page'
import DataTable from '@/components/data-table'
import {format, parseISO} from 'date-fns'
import {getClientIp} from '@/actions/ip'
+import {Alert, AlertTitle} from '@/components/ui/alert'
const schema = z.object({
host: z.string().min(1, {message: 'IP地址不能为空'}),
remark: z.string().optional(),
@@ -241,10 +242,14 @@ export default function WhitelistPage(props: WhitelistPageProps) {
+ {/* 全局提示 */}
+
+ 白名单上限 {data.total}/{MAX_WHITELIST_COUNT}
+
+
{/* 数据表 */}