add first version of report page (development)
All checks were successful
Build Quasar SPA and Go Backend for memberApp / build-spa (push) Successful in 3m1s
Build Quasar SPA and Go Backend for memberApp / build-backend (amd64, , linux) (push) Successful in 3m48s
Build Quasar SPA and Go Backend for memberApp / build-backend (amd64, .exe, windows) (push) Successful in 3m34s
Build Quasar SPA and Go Backend for memberApp / build-backend (arm, 6, , linux) (push) Successful in 3m30s
Build Quasar SPA and Go Backend for memberApp / build-backend (arm64, , linux) (push) Successful in 3m42s

This commit is contained in:
Adrian Zürcher
2026-02-08 08:55:54 +01:00
parent 30974c4e55
commit d4663a9afc
3 changed files with 115 additions and 1 deletions

36
src/pages/ReportPage.vue Normal file
View File

@@ -0,0 +1,36 @@
<template>
<div class="rows">
<div class="row justify-end">
<div class="column">
<DateDaySelect title="hjgjh" />
</div>
</div>
</div>
<q-btn @click="openDateSelect">Hallo</q-btn>
<DialogFrame :header-title="$t('selectDates')" :width="350" :height="500" ref="dateSelect">
<DateDaySelect :title="$t('selectDates')" />
<q-btn color="primary" no-caps>{{ $t('apply') }}</q-btn>
</DialogFrame>
</template>
<script setup lang="ts">
import { appApi } from 'src/boot/axios';
import DateDaySelect from 'src/components/DateDaySelect.vue';
import { onMounted, ref } from 'vue';
import { useNotify } from 'src/vueLib/general/useNotify';
import DialogFrame from 'src/vueLib/dialog/DialogFrame.vue';
const dateSelect = ref();
const { NotifyResponse } = useNotify();
onMounted(() => {
appApi
.get('events')
.then((resp) => console.log(1, resp))
.catch((err) => NotifyResponse(err, 'error'));
});
function openDateSelect() {
dateSelect.value?.open();
}
</script>