From f2f8729f979da379f17ddf9b04783b3f77dedce2 Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期日, 20 九月 2026 02:45:35 +0800
Subject: [PATCH] fix: 注释掉单位信息以简化界面
---
src/views/basicData/parameterMaintenance/index.vue | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/src/views/basicData/parameterMaintenance/index.vue b/src/views/basicData/parameterMaintenance/index.vue
index 38ddd4f..e65b467 100644
--- a/src/views/basicData/parameterMaintenance/index.vue
+++ b/src/views/basicData/parameterMaintenance/index.vue
@@ -276,14 +276,14 @@
// return val === 2 ? "鍖洪棿" : "鍗曞��";
// },
// },
- {
- label: "鍗曚綅",
- prop: "unit",
- },
- {
- label: "鍙栧�兼牸寮�",
- prop: "paramFormat",
- },
+ // {
+ // label: "鍗曚綅",
+ // prop: "unit",
+ // },
+ // {
+ // label: "鍙栧�兼牸寮�",
+ // prop: "paramFormat",
+ // },
{
label: "鏄惁蹇呭~",
prop: "isRequired",
@@ -302,6 +302,7 @@
{
label: "鍒涘缓鏃堕棿",
prop: "createTime",
+ dataType:"date"
},
{
label: "鎿嶄綔",
@@ -374,7 +375,7 @@
const formCreateTimeDate = computed({
get: () => (formData.createTime ? String(formData.createTime).split(" ")[0] : ""),
set: (value) => {
- formData.createTime = value ? `${value} ${dayjs().format("HH:mm:ss")}` : "";
+ formData.createTime = value ? dayjs(value).format("YYYY-MM-DD") : "";
},
});
// const productTypes = ref([]);
--
Gitblit v1.9.3