15 lines
567 B
TypeScript
15 lines
567 B
TypeScript
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>
|
||
);
|
||
}
|