30 lines
1.0 KiB
TypeScript
30 lines
1.0 KiB
TypeScript
'use client';
|
||
|
||
import { Card } from '@/components/ui/card';
|
||
import { Target } from 'lucide-react';
|
||
|
||
export default function PrecisionOperationPage() {
|
||
return (
|
||
<div className="space-y-6">
|
||
<Card className="p-6">
|
||
<div className="flex items-center gap-3 mb-4">
|
||
<Target className="w-6 h-6 text-indigo-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/precision-operation
|
||
</p>
|
||
<p className="text-sm mt-1">
|
||
<strong>主要功能:</strong>作业记录管理、路径规划、作业调度、作业驾驶舱等
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</Card>
|
||
</div>
|
||
);
|
||
} |