Adopt changes in MyE&P
This commit is contained in:
@@ -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
-1
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user