File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
src/components/electricity_pricing/flexible_tariffs/westfalen_wind Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments