This commit is contained in:
Владимир Фёдоров 2026-03-26 04:46:21 +07:00
parent f3eb8275da
commit a895c0f910
2 changed files with 6 additions and 6 deletions

View File

@ -19,11 +19,11 @@ onMounted(async () => {
{{ capitalizeFirstLetter(formatRussianDate(day.date)) }} {{ capitalizeFirstLetter(formatRussianDate(day.date)) }}
<span v-if="getRelativeDayName(day.date) !== ''">({{ getRelativeDayName(day.date) }})</span> <span v-if="getRelativeDayName(day.date) !== ''">({{ getRelativeDayName(day.date) }})</span>
<div v-for="performance in day.performances" :key="performance.name" class="performance-block"> <div v-for="performance in day.performances" :key="performance.name" class="performance-block">
<div> <div v-if="performance.timeCollection !== '' && performance.timeCollection !== '-'">
{{ performance.time_collection }} Сбор: {{ performance.timeCollection }}
</div> </div>
<div> <div v-if="performance.timeStart !== '' && performance.timeStart !== '-'">
{{ performance.time_start }} Время: {{ performance.timeStart }}
</div> </div>
<div> <div>
Место: {{ capitalizeFirstLetter(performance.place) }} Место: {{ capitalizeFirstLetter(performance.place) }}

View File

@ -8,8 +8,8 @@ export type Day = {
} }
export type Performance = { export type Performance = {
time_collection: string timeCollection: string
time_start: string timeStart: string
place: string place: string
name: string name: string
numbers: Number[] numbers: Number[]