Introduced Help Tickets

This commit is contained in:
2025-02-09 23:22:40 +01:00
parent 524b4b17c8
commit 52f3eb15a7
7 changed files with 344 additions and 11 deletions

View File

@@ -19,6 +19,10 @@ const links = [{
shortcuts.value = true
}
}, {
label: 'Tickets',
icon: 'i-heroicons-clipboard-document',
to: '/support',
}, {
label: 'Webseite',
icon: 'i-heroicons-globe-europe-africa',
to: 'https://fedeo.de',
@@ -173,21 +177,21 @@ const resetContactRequest = () => {
<div v-else class="flex flex-col gap-y-3">
<UButton v-for="(link, index) in links" :key="index" color="white" v-bind="link" />
</div>
<div class="mt-5" v-if="!loadingContactRequest">
<!-- <div class="mt-5" v-if="!loadingContactRequest">
<h1 class="font-semibold">Kontaktanfrage:</h1>
<UForm
class="p-3"
@submit="addContactRequest"
@reset="resetContactRequest"
>
<!-- <UFormGroup
&lt;!&ndash; <UFormGroup
label="Art:"
>
<USelectMenu
:options="['Hilfe','Software Problem / Bug','Funktionsanfrage','Kontakt','Sonstiges']"
v-model="contactRequestData.contactType"
/>
</UFormGroup>-->
</UFormGroup>&ndash;&gt;
<UFormGroup
label="Titel:"
>
@@ -222,6 +226,6 @@ const resetContactRequest = () => {
</UForm>
</div>
<UProgress class="mt-5" animation="carousel" v-else/>
<UProgress class="mt-5" animation="carousel" v-else/>-->
</UDashboardSlideover>
</template>

View File

@@ -13,6 +13,11 @@ const links = computed(() => {
icon: "i-heroicons-rectangle-stack",
target: "_blank",
}] : [],
... profileStore.currentTenant === 5 ? [{
label: "Support Tickets",
to: "/support",
icon: "i-heroicons-rectangle-stack",
}] : [],
{
id: 'dashboard',
label: "Dashboard",