diff --git a/frontend/admin-web/src/app/(dashboard)/snapshots/page.tsx b/frontend/admin-web/src/app/(dashboard)/snapshots/page.tsx index 564cddd7..37dfeabe 100644 --- a/frontend/admin-web/src/app/(dashboard)/snapshots/page.tsx +++ b/frontend/admin-web/src/app/(dashboard)/snapshots/page.tsx @@ -1,6 +1,7 @@ 'use client'; import { useState, useEffect, useCallback } from 'react'; +import { PageContainer } from '@/components/layout'; import { snapshotApi } from '@/infrastructure/api/snapshot.api'; import { useSnapshotPolling } from '@/hooks/useSnapshotPolling'; import type { @@ -166,8 +167,8 @@ export default function SnapshotsPage() { }; return ( -
-

数据快照

+ +
{/* 创建备份表单 */}
@@ -348,6 +349,7 @@ export default function SnapshotsPage() {
)}
-
+ + ); }