import { Metadata } from 'next' export const metadata: Metadata = { title: '消息发送 - Crop-X 智慧农业管理系统', description: '消息推送管理页面', } export default function MessageSendPage() { return (

📤 消息发送管理

创建新消息

最近发送记录

{[ { id: 'MSG001', title: '系统维护通知', recipients: '全体用户', time: '2024-10-20 14:30', status: '已发送' }, { id: 'MSG002', title: '农机任务分配', recipients: '农机操作员', time: '2024-10-20 12:15', status: '已发送' }, { id: 'MSG003', title: '天气预警', recipients: '农场管理员', time: '2024-10-20 09:45', status: '已发送' }, { id: 'MSG004', title: '数据备份提醒', recipients: '系统管理员', time: '2024-10-19 23:00', status: '已发送' }, ].map((message) => (

{message.title}

接收人: {message.recipients}

{message.time}

{message.status}
))}

📊 消息统计

156
今日发送
98.5%
发送成功率
1,234
总发送量
8
待发送
) }