30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
'use client';
|
||
|
||
import { Card } from '@/components/ui/card';
|
||
import { BarChart3 } from 'lucide-react';
|
||
|
||
export default function OperationDataMonitoringPage() {
|
||
return (
|
||
<div className="space-y-6">
|
||
<Card className="p-6">
|
||
<div className="flex items-center gap-3 mb-4">
|
||
<BarChart3 className="w-6 h-6 text-orange-600" />
|
||
<h2 className="text-xl font-semibold">作业数据监控</h2>
|
||
</div>
|
||
<div className="space-y-3">
|
||
<p className="text-muted-foreground">
|
||
农机作业数据采集和分析监控。实时收集作业数据,监控作业质量和效率指标。
|
||
</p>
|
||
<div className="p-3 bg-muted rounded-lg">
|
||
<p className="text-sm">
|
||
<strong>页面路径:</strong> /agricultural-machinery/monitoring/operation
|
||
</p>
|
||
<p className="text-sm mt-1">
|
||
<strong>主要功能:</strong> 数据采集、作业监控、质量分析、效率统计、报表生成
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</Card>
|
||
</div>
|
||
);
|
||
} |