From 7e83bab154e23fe8176af2326f90f9ee0aec681b Mon Sep 17 00:00:00 2001
From: 曹睿 <360930172@qq.com>
Date: 星期二, 01 七月 2025 10:13:15 +0800
Subject: [PATCH] style: 销售台账时间改成时间段

---
 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