100 lines
2.3 KiB
Vue
100 lines
2.3 KiB
Vue
<script setup lang="ts">
|
|
import { useUserStore } from '@/data/stores/userStore';
|
|
import cardView from '@/components/cardView.vue';
|
|
|
|
const userStore = useUserStore()
|
|
</script>
|
|
|
|
<template>
|
|
<card-view title="Account">
|
|
<v-container>
|
|
<v-row>
|
|
<v-col>
|
|
<v-text-field
|
|
:label="$t('account.username')"
|
|
v-model="userStore.userAccount.username"
|
|
disabled
|
|
/>
|
|
</v-col>
|
|
<v-col>
|
|
<v-text-field
|
|
:label="$t('account.password')"
|
|
v-model="userStore.userAccount.password"
|
|
type="password"
|
|
/>
|
|
</v-col>
|
|
</v-row>
|
|
|
|
<v-row>
|
|
<v-col>
|
|
<v-text-field
|
|
:label="$t('userInfo.firstName')"
|
|
v-model="userStore.userAccount.firstName"
|
|
/>
|
|
</v-col>
|
|
<v-col>
|
|
<v-text-field
|
|
:label="$t('userInfo.lastName')"
|
|
v-model="userStore.userAccount.lastName"
|
|
/>
|
|
</v-col>
|
|
</v-row>
|
|
|
|
<v-row>
|
|
<v-col>
|
|
<v-text-field
|
|
:label="$t('userInfo.street')"
|
|
v-model="userStore.userAccount.street"
|
|
/>
|
|
</v-col>
|
|
<v-col>
|
|
<v-text-field
|
|
:label="$t('userInfo.houseNumber')"
|
|
v-model="userStore.userAccount.houseNumber"
|
|
/>
|
|
</v-col>
|
|
</v-row>
|
|
|
|
<v-row>
|
|
<v-col>
|
|
<v-text-field
|
|
:label="$t('userInfo.postalCode')"
|
|
v-model="userStore.userAccount.postalCode"
|
|
/>
|
|
</v-col>
|
|
<v-col>
|
|
<v-text-field
|
|
:label="$t('userInfo.city')"
|
|
v-model="userStore.userAccount.city"
|
|
/>
|
|
</v-col>
|
|
</v-row>
|
|
|
|
<v-row>
|
|
<v-col>
|
|
<v-text-field
|
|
:label="$t('userInfo.bankName')"
|
|
v-model="userStore.userAccount.bankName"
|
|
/>
|
|
</v-col>
|
|
<v-col>
|
|
<v-text-field
|
|
:label="$t('userInfo.iban')"
|
|
v-model="userStore.userAccount.iban"
|
|
/>
|
|
</v-col>
|
|
</v-row>
|
|
</v-container>
|
|
|
|
<template #actions>
|
|
<v-btn
|
|
@click="userStore.updateAccount()"
|
|
variant="outlined"
|
|
prepend-icon="mdi-content-save"
|
|
color="green"
|
|
>
|
|
Save
|
|
</v-btn>
|
|
</template>
|
|
</card-view>
|
|
</template> |