30 lines
1.0 KiB
TypeScript
30 lines
1.0 KiB
TypeScript
'use client';
|
||
|
||
import { Card } from '@/components/ui/card';
|
||
import { Zap } from 'lucide-react';
|
||
|
||
export default function FaultDiagnosisPage() {
|
||
return (
|
||
<div className="space-y-6">
|
||
<Card className="p-6">
|
||
<div className="flex items-center gap-3 mb-4">
|
||
<Zap className="w-6 h-6 text-red-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/fault-diagnosis
|
||
</p>
|
||
<p className="text-sm mt-1">
|
||
<strong>主要功能:</strong>故障预警规则、预警管理、设备健康监控等
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</Card>
|
||
</div>
|
||
);
|
||
} |