Add more locations, add all location images, adjust seatGroups in locations

This commit is contained in:
2024-10-08 20:04:56 +02:00
parent 48bfcc9c75
commit 23b9fa3dd2
57 changed files with 606 additions and 381 deletions

View File

@@ -1,7 +1,6 @@
<script setup lang="ts">
import { SeatGroupModel } from '@/data/models/locations/seatGroupModel';
import seatGroupTable from './seatGroupTable.vue';
import { useBasketStore } from '@/data/stores/basketStore';
import standingArea from './standingArea.vue';
import { ConcertModel } from '@/data/models/acts/concertModel';
@@ -10,8 +9,6 @@ defineProps({
concert: ConcertModel,
backgroundColor: String
})
</script>
<template>

View File

@@ -3,7 +3,6 @@ import { ConcertModel } from '@/data/models/acts/concertModel';
import { SeatGroupModel } from '@/data/models/locations/seatGroupModel';
import { SelectedSeatModel } from '@/data/models/ordering/selectedSeatModel';
import { useBasketStore } from '@/data/stores/basketStore';
import { concert } from 'backend/routes/concert.routes';
const basketStore = useBasketStore()
@@ -52,7 +51,7 @@ function handleSeatClick() {
<v-row>
<v-col class="text-center text-h6">
{{ seatGroup.capacity - seatGroup.occupied }} Stehplätze
{{ seatGroup.capacity }} {{ $t('standingPlaces') }}
</v-col>
</v-row>
</v-sheet>