From 2876834b374d67c4a2490a9aad7a22507adf5e17 Mon Sep 17 00:00:00 2001
From: 曹睿 <360930172@qq.com>
Date: 星期一, 30 六月 2025 17:46:35 +0800
Subject: [PATCH] fix: 修复设备保养计划

---
 src/views/equipmentManagement/upkeep/Form/PlanForm.vue |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/views/equipmentManagement/upkeep/Form/PlanForm.vue b/src/views/equipmentManagement/upkeep/Form/PlanForm.vue
index ab22cc4..a2bd2ce 100644
--- a/src/views/equipmentManagement/upkeep/Form/PlanForm.vue
+++ b/src/views/equipmentManagement/upkeep/Form/PlanForm.vue
@@ -74,7 +74,9 @@
   form.deviceLedgerId = data.deviceLedgerId;
   form.deviceName = data.deviceName;
   form.deviceModel = data.deviceModel;
-  form.maintenancePlanTime = data.maintenancePlanTime;
+  form.maintenancePlanTime = dayjs(data.maintenancePlanTime).format(
+    "YYYY-MM-DD HH:mm:ss"
+  );
 };
 
 const loadForm = () => {};

--
Gitblit v1.9.3