diff --git a/src/pages/smartinspection/components/Inspectiontaskplan/SmartInspectionPlan.js b/src/pages/smartinspection/components/Inspectiontaskplan/SmartInspectionPlan.js index 86cd061..d0f1015 100644 --- a/src/pages/smartinspection/components/Inspectiontaskplan/SmartInspectionPlan.js +++ b/src/pages/smartinspection/components/Inspectiontaskplan/SmartInspectionPlan.js @@ -21,6 +21,95 @@ import taskPlanBg from '@/assets/img/image 674 1.svg' import { DeleteOutlined, DownOutlined, EditOutlined, ExportOutlined, EyeOutlined, PlusOutlined, RedoOutlined, ReloadOutlined as IconRefresh, SearchOutlined as IconSearch } from "@ant-design/icons"; import TemperatureHumidityGauges from '../ReusableGauges/ReusableGauges'; const { Search } = Input + +// TaskCard 组件 - 用于显示巡检任务卡片 +const TaskCard = ({ task }) => { + return ( +
+ {task.title} +
++ 开始时间:{task.startTime} +
++ 完成进度:{task.progress}% +
+此处将显示巡检任务相关内容
++ {task.title} +
++ 开始时间:{task.startTime} +
++ 完成进度:{task.progress}% +
+此处将显示巡检报告相关内容
+