Browse Source

[WHAT] 展覽橫幅卡片

Dev
berlin-tzen 2 years ago
parent
commit
7891353573
  1. 8
      FrontEnd/components/exhibition/ExhibitionBannerArea.vue

8
FrontEnd/components/exhibition/ExhibitionBannerArea.vue

@ -196,7 +196,8 @@
<div
class="tw-head-body tw-text-primary-1 tw-w-full md:tw-text-[20px] md:tw-font-medium md:tw-text-white md:tw-mt-[12px]"
>
{{ exhibition.startdate }} - {{ exhibition.enddate }}
<!-- {{ exhibition.startdate }} - {{ exhibition.enddate }} -->
{{ formatDate(exhibition.startdate) + " - " + formatDate(exhibition.enddate) }}
</div>
</div>
</div>
@ -221,8 +222,8 @@
}}{{ exhibition.city.name == null ? "" : exhibition.city.name }}
</div>
<div class="tw-head-body tw-text-primary-1 tw-w-full">
{{ exhibition.startdate }} - {{ exhibition.enddate }}
<!-- {{ formatDate(exhibition.startdate) + " - " + formatDate(exhibition.enddate) }} -->
<!-- {{ exhibition.startdate }} - {{ exhibition.enddate }} -->
{{ formatDate(exhibition.startdate) + " - " + formatDate(exhibition.enddate) }}
</div>
<div class="tw-head-body tw-flex tw-flex-row tw-items-center">
<div class="tw-text-primary-1 tw-mr-[6px]">
@ -283,6 +284,7 @@ export default {
},
},
methods: {
formatDate,
dateCountDown,
openCategoryList() {
this.show = !this.show;

Loading…
Cancel
Save