生产管理系统前端 - 农事操作管理页面搭建&白天晚上切换

This commit is contained in:
2025-10-28 17:20:41 +08:00
parent 0b6ae9fc5c
commit 3fc8f883cf
37 changed files with 841 additions and 52 deletions

View File

@@ -0,0 +1,18 @@
'use client';
import { Card } from '@/components/ui/card';
export default function ExecutionPage() {
return (
<div className="space-y-6">
<Card className="p-6">
<h2 className="text-xl font-semibold"></h2>
<div className="p-3 bg-muted rounded-lg mt-3">
<p className="text-sm">
<strong></strong> /farming-operation/execution
</p>
</div>
</Card>
</div>
);
}