From ad029922bbaa5d28265ac6d12ad080b5a999807c Mon Sep 17 00:00:00 2001 From: songsong428 Date: Wed, 11 Mar 2020 09:28:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=A1=8C=E7=A8=8B=EF=BC=8C?= =?UTF-8?q?=E6=97=B6=E9=97=B4=E8=AF=A6=E7=BB=86=E5=88=B0=E6=97=B6=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/add-stroke/components/end-date-selector.vue | 8 ++++---- pages/add-stroke/components/start-date-selector.vue | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pages/add-stroke/components/end-date-selector.vue b/pages/add-stroke/components/end-date-selector.vue index af231e7..a25fe71 100644 --- a/pages/add-stroke/components/end-date-selector.vue +++ b/pages/add-stroke/components/end-date-selector.vue @@ -6,9 +6,9 @@ @@ -26,7 +26,7 @@ data() { return { - valueEnd: this.$moment(new Date()).format('YYYY-MM-DD hh:mm:ss') + valueEnd: this.$moment(new Date()).format('YYYY-MM-DD hh:mm') }; }, diff --git a/pages/add-stroke/components/start-date-selector.vue b/pages/add-stroke/components/start-date-selector.vue index 0099ad2..761c58c 100644 --- a/pages/add-stroke/components/start-date-selector.vue +++ b/pages/add-stroke/components/start-date-selector.vue @@ -6,9 +6,9 @@ @@ -26,7 +26,7 @@ data() { return { - valueStart: this.$moment(new Date()).format('YYYY-MM-DD hh:mm:ss') + valueStart: this.$moment(new Date()).format('YYYY-MM-DD hh:mm') }; },