generated from VLADIMIR/template_frontend
fix
This commit is contained in:
parent
f3eb8275da
commit
a895c0f910
@ -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) }}
|
||||||
|
|||||||
@ -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[]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user