Skip to content

Commit c865c85

Browse files
authored
add westfalen wind (#862)
1 parent 2bc40d0 commit c865c85

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<template>
2+
<div class="flexible-tariff-westfalen-wind">
3+
<openwb-base-text-input
4+
title="Benutzername"
5+
subtype="user"
6+
required
7+
:model-value="flexibleTariff.configuration.username"
8+
@update:model-value="updateConfiguration($event, 'configuration.username')"
9+
/>
10+
<openwb-base-text-input
11+
title="Passwort"
12+
subtype="password"
13+
required
14+
:model-value="flexibleTariff.configuration.password"
15+
@update:model-value="updateConfiguration($event, 'configuration.password')"
16+
/>
17+
<openwb-base-text-input
18+
title="Vertrags-Nummer (optional)"
19+
:model-value="flexibleTariff.configuration.contract_id"
20+
@update:model-value="updateConfiguration($event, 'configuration.contract_id')"
21+
>
22+
<template #help>
23+
Bei mehreren Verträgen kann zusätzlich die Vertrags-Nummer angegeben werden, um die Preise dieses Vertrags
24+
abzurufen.
25+
</template>
26+
</openwb-base-text-input>
27+
</div>
28+
</template>
29+
30+
<script>
31+
import FlexibleTariffConfigMixin from "../FlexibleTariffConfigMixin.vue";
32+
33+
export default {
34+
name: "FlexibleTariffWestfalenWind",
35+
mixins: [FlexibleTariffConfigMixin],
36+
};
37+
</script>

0 commit comments

Comments
 (0)