import Link from 'next/link' import { Metadata } from 'next' export const metadata: Metadata = { title: '用户管理 - Crop-X 智慧农业管理系统', description: '用户管理页面', } export default function UserManagementPage() { return (

用户管理

管理用户账号、角色权限和行为跟踪

👤 用户账号管理

创建、编辑和管理用户账号

🔐 角色权限管理

配置用户角色和权限设置

📊 用户行为跟踪

监控用户操作行为和数据

📊 用户统计概览

总用户数 248 人
活跃用户 186 人
新注册用户 12 人
待审核用户 5 人

🔧 快速操作

📋 最近登录用户

{[ { username: 'admin', name: '系统管理员', role: '超级管理员', tenant: '系统', lastLogin: '2024-10-20 15:30', status: 'active' }, { username: 'zhangsan', name: '张三', role: '农场管理员', tenant: '绿色农业合作社', lastLogin: '2024-10-20 14:15', status: 'active' }, { username: 'lisi', name: '李四', role: '农机操作员', tenant: '丰收农场', lastLogin: '2024-10-20 12:45', status: 'active' }, { username: 'wangwu', name: '王五', role: '技术员', tenant: '智慧农业科技', lastLogin: '2024-10-19 16:20', status: 'inactive' }, { username: 'zhaoliu', name: '赵六', role: '观察员', tenant: '现代农业示范园', lastLogin: '2024-10-18 09:30', status: 'pending' }, ].map((user, index) => ( ))}
用户名 姓名 角色 租户 最后登录 状态 操作
{user.username} {user.name} {user.role} {user.tenant} {user.lastLogin} {user.status === 'active' ? '活跃' : user.status === 'inactive' ? '未激活' : '待审核'}
) }