2025-03-24 17:16:07 +01:00
|
|
|
<template>
|
|
|
|
<MainTemplate>
|
|
|
|
<template #topBar>
|
|
|
|
<div class="flex flex-row items-center justify-between pt-5 pb-3 px-7">
|
|
|
|
<h1 class="font-bold text-xl h-8">Schadensmeldungen</h1>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template #diffMain>
|
2025-03-25 10:42:40 +01:00
|
|
|
<div class="flex flex-col w-full h-full gap-2 justify-center px-7">
|
|
|
|
<div class="w-full flex flex-row max-lg:flex-wrap justify-center">
|
|
|
|
<div
|
|
|
|
v-for="tab in tabs"
|
|
|
|
:key="tab.route"
|
|
|
|
@click="isActive = tab.route"
|
|
|
|
class="w-1/2 md:w-1/3 lg:w-full p-0.5 first:pl-0 last:pr-0 cursor-pointer"
|
|
|
|
>
|
|
|
|
<p
|
|
|
|
:class="[
|
|
|
|
'w-full rounded-lg py-2.5 text-sm text-center font-medium leading-5 focus:ring-0 outline-none',
|
|
|
|
isActive == tab.route
|
|
|
|
? 'bg-red-200 shadow border-b-2 border-primary rounded-b-none'
|
|
|
|
: ' hover:bg-red-200',
|
|
|
|
]"
|
|
|
|
>
|
|
|
|
{{ tab.title }}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<Pagination
|
|
|
|
:items="damageReports"
|
|
|
|
:totalCount="totalCount"
|
|
|
|
:indicateLoading="loading == 'loading'"
|
|
|
|
@load-data="(offset, count, search) => fetchDamageReports(offset, count, search)"
|
|
|
|
@search="(search) => fetchDamageReports(0, maxEntriesPerPage, search, true)"
|
|
|
|
>
|
|
|
|
<template #pageRow="{ row }: { row: DamageReportViewModel }">
|
|
|
|
<DamageReportListItem :damageReport="row" />
|
|
|
|
</template>
|
|
|
|
</Pagination>
|
|
|
|
</div>
|
2025-03-24 17:16:07 +01:00
|
|
|
</template>
|
|
|
|
</MainTemplate>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { defineComponent } from "vue";
|
|
|
|
import { mapActions, mapState } from "pinia";
|
|
|
|
import MainTemplate from "@/templates/Main.vue";
|
2025-03-25 10:42:40 +01:00
|
|
|
import { useAbilityStore } from "@/stores/ability";
|
|
|
|
import { useDamageReportStore } from "@/stores/admin/unit/damageReport/damageReport";
|
|
|
|
import type { DamageReportViewModel } from "@/viewmodels/admin/unit/damageReport/damageReport.models";
|
|
|
|
import Pagination from "@/components/Pagination.vue";
|
|
|
|
import DamageReportListItem from "../../../../components/admin/unit/damageReport/DamageReportListItem.vue";
|
2025-03-24 17:16:07 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
export default defineComponent({
|
|
|
|
data() {
|
2025-03-25 10:42:40 +01:00
|
|
|
return {
|
|
|
|
tabs: [
|
|
|
|
{ route: "overview", title: "offen" },
|
|
|
|
{ route: "membership", title: "bearbeitet" },
|
|
|
|
],
|
|
|
|
isActive: "overview",
|
|
|
|
currentPage: 0,
|
|
|
|
maxEntriesPerPage: 25,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapState(useDamageReportStore, ["damageReports", "totalCount", "loading"]),
|
|
|
|
...mapState(useAbilityStore, ["can"]),
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.fetchDamageReports(0, this.maxEntriesPerPage, "", true);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
...mapActions(useDamageReportStore, ["fetchDamageReports"]),
|
2025-03-24 17:16:07 +01:00
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|