generated from VLADIMIR/template_frontend
fix
This commit is contained in:
parent
9c1d842930
commit
980bdd0bdc
@ -20,15 +20,17 @@ onMounted(async () => {
|
|||||||
<span v-if="getRelativeDayName(day.date) !== ''">({{ getRelativeDayName(day.date) }})</span>
|
<span v-if="getRelativeDayName(day.date) !== ''">({{ getRelativeDayName(day.date) }})</span>
|
||||||
<div v-for="(performance, index) in day.performances" :key="performance.name" class="performance-block">
|
<div v-for="(performance, index) in day.performances" :key="performance.name" class="performance-block">
|
||||||
<hr v-if="index > 0" class="hr">
|
<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) }}
|
Сбор: {{ formatTime(performance.timeCollection) }}
|
||||||
</div>
|
</div>
|
||||||
<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>
|
<span v-else>Уточняется</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div class="place-block">
|
||||||
Место: {{ capitalizeFirstLetter(performance.place) }}
|
Место: {{ capitalizeFirstLetter(performance.place) }}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
@ -60,6 +62,15 @@ onMounted(async () => {
|
|||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.time-collection-block {
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
.place-block {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
.performance-block {}
|
.performance-block {}
|
||||||
|
|
||||||
.number-block {
|
.number-block {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user