2026-09-09 18:34:27 +00:00
|
|
|
|
import { AdminGate, AdminPageShell } from "@/components/admin/gate";
|
|
|
|
|
|
import { UsersPanel } from "@/components/admin/users";
|
2026-09-08 09:20:15 +00:00
|
|
|
|
|
|
|
|
|
|
export const metadata = { title: "用户管理" };
|
|
|
|
|
|
|
|
|
|
|
|
export default function AdminUsersPage() {
|
2026-09-09 18:34:27 +00:00
|
|
|
|
return (
|
|
|
|
|
|
<AdminGate>
|
|
|
|
|
|
<AdminPageShell eyebrow="Admin / Users" title="用户与会员" description="分页查询用户,按邮箱/手机号/状态筛选;禁用恢复会撤销会话,授予/撤销 VIP,并调整周期额度。所有写操作都需要原因。">
|
|
|
|
|
|
<UsersPanel />
|
|
|
|
|
|
</AdminPageShell>
|
|
|
|
|
|
</AdminGate>
|
|
|
|
|
|
);
|
2026-09-08 09:20:15 +00:00
|
|
|
|
}
|