Included Tenant Value in Creation

Added Fields to Customer Info Data
This commit is contained in:
2024-02-19 15:49:04 +01:00
parent 0495f40bef
commit 0ccd5635e7
2 changed files with 36 additions and 3 deletions

View File

@@ -21,7 +21,9 @@ let currentItem = ref(null)
const mode = ref(route.params.mode || "show")
const itemInfo = ref({
name: "",
infoData: {},
infoData: {
country: "Deutschland"
},
active: true
})
@@ -228,6 +230,13 @@ setupPage()
v-model="itemInfo.infoData.street"
/>
</UFormGroup>
<UFormGroup
label="Adresszusatz"
>
<UInput
v-model="itemInfo.infoData.special"
/>
</UFormGroup>
<UFormGroup
label="Postleitzahl"
>
@@ -242,6 +251,14 @@ setupPage()
v-model="itemInfo.infoData.city"
/>
</UFormGroup>
<UFormGroup
label="Land"
>
<USelectMenu
:options="['Deutschland','Niederlande','Belgien']"
v-model="itemInfo.infoData.country"
/>
</UFormGroup>
<UFormGroup
label="Telefon:"