30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
'use client';
|
||
|
||
import { Card } from '@/components/ui/card';
|
||
import { Database } from 'lucide-react';
|
||
|
||
export default function LoadDeviceLibraryPage() {
|
||
return (
|
||
<div className="space-y-6">
|
||
<Card className="p-6">
|
||
<div className="flex items-center gap-3 mb-4">
|
||
<Database className="w-6 h-6 text-emerald-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/load-management/library
|
||
</p>
|
||
<p className="text-sm mt-1">
|
||
<strong>主要功能:</strong> 设备信息库、技术规格、性能参数、设备选型推荐
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</Card>
|
||
</div>
|
||
);
|
||
} |