30 lines
1.0 KiB
TypeScript
30 lines
1.0 KiB
TypeScript
'use client';
|
||
|
||
import { Card } from '@/components/ui/card';
|
||
import { User } from 'lucide-react';
|
||
|
||
export default function DriverArchivePage() {
|
||
return (
|
||
<div className="space-y-6">
|
||
<Card className="p-6">
|
||
<div className="flex items-center gap-3 mb-4">
|
||
<User className="w-6 h-6 text-green-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/driver-archive
|
||
</p>
|
||
<p className="text-sm mt-1">
|
||
<strong>主要功能:</strong>驾驶员信息管理、资质审核、任务分配等
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</Card>
|
||
</div>
|
||
);
|
||
} |