From d674a3b8d48a10ec9d8f5edc56527dde778473c1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com>
Date: Fri, 29 Mar 2024 10:49:38 +0800
Subject: [PATCH] xg
---
.../unitconfig/PatientConfigurationVisitRecords/index.vue | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/views/unitconfig/PatientConfigurationVisitRecords/index.vue b/src/views/unitconfig/PatientConfigurationVisitRecords/index.vue
index 18d2b77..bd0d9a9 100644
--- a/src/views/unitconfig/PatientConfigurationVisitRecords/index.vue
+++ b/src/views/unitconfig/PatientConfigurationVisitRecords/index.vue
@@ -75,12 +75,14 @@
+ value-format="yyyy-MM-dd HH:mm" format='yyyy-MM-dd HH:mm' :picker-options="pickerOptions"
+ placeholder="选择日期时间">
+ :picker-options="pickerOptionstwo" value-format="yyyy-MM-dd HH:mm" format='yyyy-MM-dd HH:mm'
+ placeholder="选择日期时间">
@@ -272,7 +274,7 @@ export default {
var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
var seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
// 拼接
- this.todaytime = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
+ this.todaytime = year + "-" + month + "-" + day + " " + hours + ":" + minutes
},
}
};