From 426d2970e431524808e131f27cb2e55bbc751b3f Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期一, 22 六月 2026 14:32:44 +0800
Subject: [PATCH] feat(productionReporting): 格式化创建时间字段显示

---
 src/views/productionManagement/productionReporting/index.vue |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/views/productionManagement/productionReporting/index.vue b/src/views/productionManagement/productionReporting/index.vue
index 8821c9f..e94919b 100644
--- a/src/views/productionManagement/productionReporting/index.vue
+++ b/src/views/productionManagement/productionReporting/index.vue
@@ -163,6 +163,7 @@
   import { productionProductMainListPage } from "@/api/productionManagement/productionProductMain.js";
   import { userListNoPageByTenantId } from "@/api/system/user.js";
   import InputModal from "@/views/productionManagement/productionReporting/Input.vue";
+  import dayjs from "dayjs";
 
   const data = reactive({
     searchForm: {
@@ -236,6 +237,7 @@
       label: "鍒涘缓鏃堕棿",
       prop: "createTime",
       width: 160,
+      formatData: val => (val ? dayjs(val).format("YYYY-MM-DD") : ""),
     },
     {
       dataType: "action",

--
Gitblit v1.9.3