30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
'use client';
|
||
|
||
import { Card } from '@/components/ui/card';
|
||
import { FileText } from 'lucide-react';
|
||
|
||
export default function AgriculturalMachineryEntryPage() {
|
||
return (
|
||
<div className="space-y-6">
|
||
<Card className="p-6">
|
||
<div className="flex items-center gap-3 mb-4">
|
||
<FileText className="w-6 h-6 text-blue-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/archive/entry
|
||
</p>
|
||
<p className="text-sm mt-1">
|
||
<strong>主要功能:</strong> 农机设备信息录入、档案编辑、状态更新、设备台账管理
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</Card>
|
||
</div>
|
||
);
|
||
} |