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 }, } };