30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
'use client';
|
||
|
||
import { Card } from '@/components/ui/card';
|
||
import { Calendar } from 'lucide-react';
|
||
|
||
export default function DriverTaskManagementPage() {
|
||
return (
|
||
<div className="space-y-6">
|
||
<Card className="p-6">
|
||
<div className="flex items-center gap-3 mb-4">
|
||
<Calendar 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/driver-archive/task
|
||
</p>
|
||
<p className="text-sm mt-1">
|
||
<strong>主要功能:</strong> 任务分配、作业安排、进度监控、绩效考核、工时统计
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</Card>
|
||
</div>
|
||
);
|
||
} |