From 78913535737a9e3e457136b8de3565f3df146073 Mon Sep 17 00:00:00 2001 From: berlin-tzen Date: Thu, 9 Feb 2023 13:41:17 +0800 Subject: [PATCH] =?UTF-8?q?[WHAT]=20=E5=B1=95=E8=A6=BD=E6=A9=AB=E5=B9=85?= =?UTF-8?q?=E5=8D=A1=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FrontEnd/components/exhibition/ExhibitionBannerArea.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/FrontEnd/components/exhibition/ExhibitionBannerArea.vue b/FrontEnd/components/exhibition/ExhibitionBannerArea.vue index a91e75d..338d378 100644 --- a/FrontEnd/components/exhibition/ExhibitionBannerArea.vue +++ b/FrontEnd/components/exhibition/ExhibitionBannerArea.vue @@ -196,7 +196,8 @@
- {{ exhibition.startdate }} - {{ exhibition.enddate }} + + {{ formatDate(exhibition.startdate) + " - " + formatDate(exhibition.enddate) }}
@@ -221,8 +222,8 @@ }}{{ exhibition.city.name == null ? "" : exhibition.city.name }}
- {{ exhibition.startdate }} - {{ exhibition.enddate }} - + + {{ formatDate(exhibition.startdate) + " - " + formatDate(exhibition.enddate) }}
@@ -283,6 +284,7 @@ export default { }, }, methods: { + formatDate, dateCountDown, openCategoryList() { this.show = !this.show;