Skip to content

Commit 28faec9

Browse files
committed
feat:支持日程模式隐藏时间
1 parent cb8a04a commit 28faec9

File tree

1 file changed

+1
-1
lines changed
  • packages/vue/src/calendar-view/src

1 file changed

+1
-1
lines changed

packages/vue/src/calendar-view/src/pc.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
>
199199
<div v-for="(event, idx) of state.curWeekEvents[date.value] || []" :key="idx" class="day-events">
200200
<div class="title">{{ event.title }}</div>
201-
<div class="date">
201+
<div v-if="showTipTime" class="date">
202202
{{ getEventShowTime('start', event, date.value) }} - {{ getEventShowTime('end', event, date.value) }}
203203
</div>
204204
<p class="content">{{ event.content || '' }}</p>

0 commit comments

Comments
 (0)