release v2.0.0 #4
|
@ -6,15 +6,20 @@
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-list>
|
<v-list>
|
||||||
|
<template
|
||||||
|
v-for="(free_drink_config, index) in free_drink_list_config">
|
||||||
<v-list-item
|
<v-list-item
|
||||||
v-for="free_drink_config in free_drink_list_config"
|
:key="index">
|
||||||
:key="free_drink_config.id"
|
<v-list-item-content>
|
||||||
>
|
<v-row>
|
||||||
|
<v-col>
|
||||||
<v-text-field
|
<v-text-field
|
||||||
outlined
|
outlined
|
||||||
label="Label"
|
label="Label"
|
||||||
:value="free_drink_config.label"
|
:value="free_drink_config.label"
|
||||||
/>
|
/>
|
||||||
|
</v-col>
|
||||||
|
<v-col>
|
||||||
<v-autocomplete
|
<v-autocomplete
|
||||||
outlined
|
outlined
|
||||||
label="Zugeordnetes Getränk"
|
label="Zugeordnetes Getränk"
|
||||||
|
@ -23,6 +28,8 @@
|
||||||
item-value="id"
|
item-value="id"
|
||||||
:value="free_drink_config.drink"
|
:value="free_drink_config.drink"
|
||||||
/>
|
/>
|
||||||
|
</v-col>
|
||||||
|
<v-col>
|
||||||
<v-autocomplete
|
<v-autocomplete
|
||||||
outlined
|
outlined
|
||||||
label="Freigetränkaufnahme"
|
label="Freigetränkaufnahme"
|
||||||
|
@ -32,13 +39,23 @@
|
||||||
item-value="id"
|
item-value="id"
|
||||||
:value="free_drink_config.free_drink_types"
|
:value="free_drink_config.free_drink_types"
|
||||||
/>
|
/>
|
||||||
|
</v-col>
|
||||||
|
<v-col>
|
||||||
<v-text-field
|
<v-text-field
|
||||||
outlined
|
outlined
|
||||||
label="Preis in €"
|
label="Preis in €"
|
||||||
type="number"
|
type="number"
|
||||||
:value="(free_drink_config.price / 100).toFixed(2)"
|
:value="(free_drink_config.price / 100).toFixed(2)"
|
||||||
/>
|
/>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</v-list-item-content>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
|
<v-divider
|
||||||
|
v-if="index + 1 < free_drink_list_config.length"
|
||||||
|
:key="index"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
</v-list>
|
</v-list>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
<v-card-actions>
|
<v-card-actions>
|
||||||
|
|
Loading…
Reference in New Issue