www_site/app/admin/users/page.tsx

15 lines
567 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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