Adopt changes in MyE&P

This commit is contained in:
Björn Fromme
2021-06-16 12:31:10 +02:00
parent 2a7c9290dd
commit fef5af6faa
2 changed files with 6 additions and 4 deletions
@@ -104,9 +104,11 @@
<tr v-if="participant.surcharges.length > 0"> <tr v-if="participant.surcharges.length > 0">
<th>Zuschläge</th> <th>Zuschläge</th>
<td> <td>
<p v-for="surcharge in participant.surcharges"> <ul class="list-unstyled">
{{ surcharge.priceSingle.toFixed(2) }} ({{ surcharge.name }}) <li v-for="surcharge in participant.surcharges">
</p> {{ surcharge.priceSingle.toFixed(2) }} <span v-show="surcharge.name">({{ surcharge.name }})</span>
</li>
</ul>
</td> </td>
</tr> </tr>
<tr> <tr>
@@ -1,5 +1,5 @@
<template> <template>
<div class="relative" v-if="mutable"> <div class="relative" v-if="mutable && selectableAccommodations.length > 0">
<button class="btn btn-primary btn-sm w-full lg:w-auto" type="button" @click.prevent="visible = !visible"> <button class="btn btn-primary btn-sm w-full lg:w-auto" type="button" @click.prevent="visible = !visible">
Zimmer <span class="glyphicon" :class="{ 'glyphicon-chevron-up': visible, 'glyphicon-chevron-down': !visible }"></span> Zimmer <span class="glyphicon" :class="{ 'glyphicon-chevron-up': visible, 'glyphicon-chevron-down': !visible }"></span>
</button> </button>