This commit is contained in:
Владимир Фёдоров 2026-03-26 15:23:07 +07:00
parent 9c1d842930
commit 980bdd0bdc

View File

@ -20,15 +20,17 @@ onMounted(async () => {
<span v-if="getRelativeDayName(day.date) !== ''">({{ getRelativeDayName(day.date) }})</span>
<div v-for="(performance, index) in day.performances" :key="performance.name" class="performance-block">
<hr v-if="index > 0" class="hr">
<div v-if="performance.timeCollection !== '' && performance.timeCollection !== '-'">
<div v-if="performance.timeCollection !== '' && performance.timeCollection !== '-'"
class="time-collection-block">
Сбор: {{ formatTime(performance.timeCollection) }}
</div>
<div>
Время:
<span v-if="performance.timeStart !== '' && performance.timeStart !== '-'">{{ formatTimeRange(performance.timeStart) }}</span>
<span v-if="performance.timeStart !== '' && performance.timeStart !== '-'">{{
formatTimeRange(performance.timeStart) }}</span>
<span v-else>Уточняется</span>
</div>
<div>
<div class="place-block">
Место: {{ capitalizeFirstLetter(performance.place) }}
</div>
<div>
@ -60,6 +62,15 @@ onMounted(async () => {
font-weight: 700;
}
.time-collection-block {
font-size: 20px;
font-weight: 700;
}
.place-block {
font-weight: 700;
}
.performance-block {}
.number-block {