From 417f73c54db3aeac81e7eafff293f735fe5a5806 Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期日, 21 六月 2026 13:22:58 +0800
Subject: [PATCH] fix: 不显示报工台账的时分秒
---
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 fa4e163..ee7b8ad 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: 120,
+ formatData: val => (val ? dayjs(val).format("YYYY-MM-DD") : ""),
},
{
dataType: "action",
--
Gitblit v1.9.3